Interface IAlexaSkillDeployActionProps
Construction properties of the AlexaSkillDeployAction Alexa deploy Action
.
Inherited Members
Namespace: Amazon.CDK.AWS.CodePipeline.Actions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAlexaSkillDeployActionProps : ICommonActionProps
Syntax (vb)
Public Interface IAlexaSkillDeployActionProps
Inherits ICommonActionProps
Remarks
ExampleMetadata: infused
Examples
// Read the secrets from ParameterStore
var clientId = SecretValue.SecretsManager("AlexaClientId");
var clientSecret = SecretValue.SecretsManager("AlexaClientSecret");
var refreshToken = SecretValue.SecretsManager("AlexaRefreshToken");
// Add deploy action
var sourceOutput = new Artifact();
new AlexaSkillDeployAction(new AlexaSkillDeployActionProps {
ActionName = "DeploySkill",
RunOrder = 1,
Input = sourceOutput,
ClientId = clientId.ToString(),
ClientSecret = clientSecret,
RefreshToken = refreshToken,
SkillId = "amzn1.ask.skill.12345678-1234-1234-1234-123456789012"
});
Synopsis
Properties
Client |
The client id of the developer console token. |
Client |
The client secret of the developer console token. |
Input | The source artifact containing the voice model and skill manifest. |
Parameter |
An optional artifact containing overrides for the skill manifest. |
Refresh |
The refresh token of the developer console token. |
Skill |
The Alexa skill id. |
Properties
ClientId
The client id of the developer console token.
string ClientId { get; }
Property Value
System.
ClientSecret
The client secret of the developer console token.
SecretValue ClientSecret { get; }
Property Value
Input
The source artifact containing the voice model and skill manifest.
Artifact_ Input { get; }
Property Value
ParameterOverridesArtifact
An optional artifact containing overrides for the skill manifest.
virtual Artifact_ ParameterOverridesArtifact { get; }
Property Value
RefreshToken
The refresh token of the developer console token.
SecretValue RefreshToken { get; }
Property Value
SkillId
The Alexa skill id.
string SkillId { get; }
Property Value
System.