Interface CfnSkill.SkillPackageProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSkill.SkillPackageProperty.Jsii$Proxy
Enclosing class:
CfnSkill

@Stability(Stable) public static interface CfnSkill.SkillPackageProperty extends software.amazon.jsii.JsiiSerializable
The SkillPackage property type contains configuration details 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. More details about the skill package format are located in the .

SkillPackage is a property of the Alexa::ASK::Skill resource.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.alexa.ask.*;
 Object manifest;
 SkillPackageProperty skillPackageProperty = SkillPackageProperty.builder()
         .s3Bucket("s3Bucket")
         .s3Key("s3Key")
         // the properties below are optional
         .overrides(OverridesProperty.builder()
                 .manifest(manifest)
                 .build())
         .s3BucketRole("s3BucketRole")
         .s3ObjectVersion("s3ObjectVersion")
         .build();
 

See Also: