interface CfnSkillMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.Alexa.ASK.Mixins.CfnSkillMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/alexaask/mixins#CfnSkillMixinProps |
Java | software.amazon.awscdk.mixins.preview.alexa.ask.mixins.CfnSkillMixinProps |
Python | aws_cdk.mixins_preview.alexa_ask.mixins.CfnSkillMixinProps |
TypeScript | @aws-cdk/mixins-preview » alexa_ask » mixins » CfnSkillMixinProps |
Properties for CfnSkillPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as alexa_ask_mixins } from '@aws-cdk/mixins-preview/alexa-ask';
declare const manifest: any;
const cfnSkillMixinProps: alexa_ask_mixins.CfnSkillMixinProps = {
authenticationConfiguration: {
clientId: 'clientId',
clientSecret: 'clientSecret',
refreshToken: 'refreshToken',
},
skillPackage: {
overrides: {
manifest: manifest,
},
s3Bucket: 's3Bucket',
s3BucketRole: 's3BucketRole',
s3Key: 's3Key',
s3ObjectVersion: 's3ObjectVersion',
},
vendorId: 'vendorId',
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | IResolvable | Authentication | Login with Amazon (LWA) configuration used to authenticate with the Alexa service. |
| skill | IResolvable | Skill | Configuration for the skill package that contains the components of the Alexa skill. |
| vendor | string | The vendor ID associated with the Amazon developer account that will host the skill. |
authenticationConfiguration?
Type:
IResolvable | Authentication
(optional)
Login with Amazon (LWA) configuration used to authenticate with the Alexa service.
Only Login with Amazon clients created through the are supported. The client ID, client secret, and refresh token are required.
skillPackage?
Type:
IResolvable | Skill
(optional)
Configuration for the skill package that contains the components of the Alexa skill.
Skill packages are retrieved from an Amazon S3 bucket and key and used to create and update the skill. For more information about the skill package format, see the .
vendorId?
Type:
string
(optional)
The vendor ID associated with the Amazon developer account that will host the skill.
Details for retrieving the vendor ID are in . The provided LWA credentials must be linked to the developer account associated with this vendor ID.

.NET
Go
Java
Python
TypeScript