Interface CfnSkillProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSkillProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:11.543Z") @Stability(Stable) public interface CfnSkillProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSkill.

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;
 CfnSkillProps cfnSkillProps = CfnSkillProps.builder()
         .authenticationConfiguration(AuthenticationConfigurationProperty.builder()
                 .clientId("clientId")
                 .clientSecret("clientSecret")
                 .refreshToken("refreshToken")
                 .build())
         .skillPackage(SkillPackageProperty.builder()
                 .s3Bucket("s3Bucket")
                 .s3Key("s3Key")
                 // the properties below are optional
                 .overrides(OverridesProperty.builder()
                         .manifest(manifest)
                         .build())
                 .s3BucketRole("s3BucketRole")
                 .s3ObjectVersion("s3ObjectVersion")
                 .build())
         .vendorId("vendorId")
         .build();
 

See Also: