@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.496Z") @Stability(value=Stable) public interface AlexaSkillDeployActionProps extends software.amazon.jsii.JsiiSerializable, CommonActionProps
Alexa deploy Action.
Example:
// Example automatically generated from non-compiling source. May contain errors.
// Read the secrets from ParameterStore
SecretValue clientId = SecretValue.secretsManager("AlexaClientId");
SecretValue clientSecret = SecretValue.secretsManager("AlexaClientSecret");
SecretValue refreshToken = SecretValue.secretsManager("AlexaRefreshToken");
// Add deploy action
Artifact sourceOutput = new Artifact();
AlexaSkillDeployAction.Builder.create()
.actionName("DeploySkill")
.runOrder(1)
.input(sourceOutput)
.clientId(clientId.toString())
.clientSecret(clientSecret)
.refreshToken(refreshToken)
.skillId("amzn1.ask.skill.12345678-1234-1234-1234-123456789012")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
AlexaSkillDeployActionProps.Builder
A builder for
AlexaSkillDeployActionProps |
static class |
AlexaSkillDeployActionProps.Jsii$Proxy
An implementation for
AlexaSkillDeployActionProps |
| Modifier and Type | Method and Description |
|---|---|
static AlexaSkillDeployActionProps.Builder |
builder() |
String |
getClientId()
The client id of the developer console token.
|
SecretValue |
getClientSecret()
The client secret of the developer console token.
|
Artifact |
getInput()
The source artifact containing the voice model and skill manifest.
|
default Artifact |
getParameterOverridesArtifact()
An optional artifact containing overrides for the skill manifest.
|
SecretValue |
getRefreshToken()
The refresh token of the developer console token.
|
String |
getSkillId()
The Alexa skill id.
|
getActionName, getRunOrder, getVariablesNamespace@Stability(value=Stable) @NotNull String getClientId()
@Stability(value=Stable) @NotNull SecretValue getClientSecret()
@Stability(value=Stable) @NotNull Artifact getInput()
@Stability(value=Stable) @NotNull SecretValue getRefreshToken()
@Stability(value=Stable) @NotNull String getSkillId()
@Stability(value=Stable) @Nullable default Artifact getParameterOverridesArtifact()
@Stability(value=Stable) static AlexaSkillDeployActionProps.Builder builder()
builder in interface CommonActionPropsAlexaSkillDeployActionProps.Builder of AlexaSkillDeployActionPropsCopyright © 2022. All rights reserved.