@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:35.957Z") @Stability(value=Stable) public interface CfnSkillProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSkillProps.Builder
A builder for
CfnSkillProps |
static class |
CfnSkillProps.Jsii$Proxy
An implementation for
CfnSkillProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSkillProps.Builder |
builder() |
Object |
getAuthenticationConfiguration()
Login with Amazon (LWA) configuration used to authenticate with the Alexa service.
|
Object |
getSkillPackage()
Configuration for the skill package that contains the components of the Alexa skill.
|
String |
getVendorId()
The vendor ID associated with the Amazon developer account that will host the skill.
|
@Stability(value=Stable) @NotNull Object getAuthenticationConfiguration()
Only Login with Amazon clients created through the are supported. The client ID, client secret, and refresh token are required.
@Stability(value=Stable) @NotNull Object getSkillPackage()
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 .
@Stability(value=Stable) @NotNull String getVendorId()
Details for retrieving the vendor ID are in . The provided LWA credentials must be linked to the developer account associated with this vendor ID.
@Stability(value=Stable) static CfnSkillProps.Builder builder()
CfnSkillProps.Builder of CfnSkillPropsCopyright © 2022. All rights reserved.