@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.495Z") @Stability(value=Stable) public class AlexaSkillDeployAction extends 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 | Class and Description |
|---|---|
static class |
AlexaSkillDeployAction.Builder
A fluent builder for
AlexaSkillDeployAction. |
software.amazon.jsii.JsiiObject.InitializationModeIAction.Jsii$Default| Modifier | Constructor and Description |
|---|---|
|
AlexaSkillDeployAction(AlexaSkillDeployActionProps props) |
protected |
AlexaSkillDeployAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
AlexaSkillDeployAction(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
protected ActionConfig |
bound(software.constructs.Construct _scope,
IStage _stage,
ActionBindOptions _options)
This is a renamed version of the
IAction.bind method. |
getProvidedActionPropertiesbind, getActionProperties, onStateChange, onStateChange, onStateChange, variableExpressionjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetprotected AlexaSkillDeployAction(software.amazon.jsii.JsiiObjectRef objRef)
protected AlexaSkillDeployAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public AlexaSkillDeployAction(@NotNull
AlexaSkillDeployActionProps props)
props - This parameter is required.@Stability(value=Stable) @NotNull protected ActionConfig bound(@NotNull software.constructs.Construct _scope, @NotNull IStage _stage, @NotNull ActionBindOptions _options)
IAction.bind method.
Copyright © 2022. All rights reserved.