Interface CfnSkillMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSkillMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.291Z")
@Stability(Stable)
public interface CfnSkillMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSkillPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.alexa.ask.*;
Object manifest;
CfnSkillMixinProps cfnSkillMixinProps = CfnSkillMixinProps.builder()
.authenticationConfiguration(AuthenticationConfigurationProperty.builder()
.clientId("clientId")
.clientSecret("clientSecret")
.refreshToken("refreshToken")
.build())
.skillPackage(SkillPackageProperty.builder()
.overrides(OverridesProperty.builder()
.manifest(manifest)
.build())
.s3Bucket("s3Bucket")
.s3BucketRole("s3BucketRole")
.s3Key("s3Key")
.s3ObjectVersion("s3ObjectVersion")
.build())
.vendorId("vendorId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSkillMixinPropsstatic final classAn implementation forCfnSkillMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSkillMixinProps.Builderbuilder()default ObjectLogin with Amazon (LWA) configuration used to authenticate with the Alexa service.default ObjectConfiguration for the skill package that contains the components of the Alexa skill.default StringThe vendor ID associated with the Amazon developer account that will host the skill.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationConfiguration
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.
Returns union: either
IResolvableorCfnSkillPropsMixin.AuthenticationConfigurationProperty- See Also:
-
getSkillPackage
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 .
Returns union: either
IResolvableorCfnSkillPropsMixin.SkillPackageProperty- See Also:
-
getVendorId
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.
- See Also:
-
builder
- Returns:
- a
CfnSkillMixinProps.BuilderofCfnSkillMixinProps
-