@aws-cdk/alexa-ask
Advanced tools
Comparing version 0.20.0 to 0.21.0
import cdk = require('@aws-cdk/cdk'); | ||
/** | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html | ||
*/ | ||
export interface CfnSkillProps { | ||
/** | ||
* ``Alexa::ASK::Skill.AuthenticationConfiguration`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-authenticationconfiguration | ||
*/ | ||
authenticationConfiguration: CfnSkill.AuthenticationConfigurationProperty | cdk.Token; | ||
/** | ||
* ``Alexa::ASK::Skill.SkillPackage`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-skillpackage | ||
*/ | ||
skillPackage: CfnSkill.SkillPackageProperty | cdk.Token; | ||
/** | ||
* ``Alexa::ASK::Skill.VendorId`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid | ||
*/ | ||
vendorId: string | cdk.Token; | ||
} | ||
/** | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html | ||
*/ | ||
export declare class CfnSkill extends cdk.Resource { | ||
/** | ||
* The CloudFormation resource type name for this resource class. | ||
*/ | ||
static readonly resourceTypeName = "Alexa::ASK::Skill"; | ||
readonly skillId: string; | ||
/** | ||
* Creates a new ``Alexa::ASK::Skill``. | ||
* | ||
* @param parent the ``cdk.Construct`` this ``CfnSkill`` is a part of | ||
* @param name the name of the resource in the ``cdk.Construct`` tree | ||
* @param properties the properties of this ``CfnSkill`` | ||
*/ | ||
constructor(parent: cdk.Construct, name: string, properties: CfnSkillProps); | ||
readonly propertyOverrides: CfnSkillProps; | ||
protected renderProperties(properties: any): { | ||
[key: string]: any; | ||
}; | ||
} | ||
export declare namespace CfnSkill { | ||
/** | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html | ||
*/ | ||
interface AuthenticationConfigurationProperty { | ||
/** | ||
* ``CfnSkill.AuthenticationConfigurationProperty.ClientId`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid | ||
*/ | ||
clientId: string | cdk.Token; | ||
/** | ||
* ``CfnSkill.AuthenticationConfigurationProperty.ClientSecret`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret | ||
*/ | ||
clientSecret: string | cdk.Token; | ||
/** | ||
* ``CfnSkill.AuthenticationConfigurationProperty.RefreshToken`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken | ||
*/ | ||
refreshToken: string | cdk.Token; | ||
} | ||
} | ||
export declare namespace CfnSkill { | ||
/** | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html | ||
*/ | ||
interface OverridesProperty { | ||
/** | ||
* ``CfnSkill.OverridesProperty.Manifest`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest | ||
*/ | ||
manifest?: object | cdk.Token; | ||
} | ||
} | ||
export declare namespace CfnSkill { | ||
/** | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html | ||
*/ | ||
interface SkillPackageProperty { | ||
/** | ||
* ``CfnSkill.SkillPackageProperty.Overrides`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-overrides | ||
*/ | ||
overrides?: CfnSkill.OverridesProperty | cdk.Token; | ||
/** | ||
* ``CfnSkill.SkillPackageProperty.S3Bucket`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket | ||
*/ | ||
s3Bucket: string | cdk.Token; | ||
/** | ||
* ``CfnSkill.SkillPackageProperty.S3BucketRole`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole | ||
*/ | ||
s3BucketRole?: string | cdk.Token; | ||
/** | ||
* ``CfnSkill.SkillPackageProperty.S3Key`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key | ||
*/ | ||
s3Key: string | cdk.Token; | ||
/** | ||
* ``CfnSkill.SkillPackageProperty.S3ObjectVersion`` | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion | ||
*/ | ||
s3ObjectVersion?: string | cdk.Token; | ||
} | ||
} | ||
export declare namespace cloudformation { | ||
@@ -24,2 +132,3 @@ /** | ||
/** | ||
* @deprecated "cloudformation.SkillResource" will be deprecated in a future release in favor of "CfnSkill" (see https://github.com/awslabs/aws-cdk/issues/878) | ||
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html | ||
@@ -89,3 +198,3 @@ */ | ||
*/ | ||
overrides?: OverridesProperty | cdk.Token; | ||
overrides?: SkillResource.OverridesProperty | cdk.Token; | ||
/** | ||
@@ -92,0 +201,0 @@ * ``SkillResource.SkillPackageProperty.S3Bucket`` |
{ | ||
"name": "@aws-cdk/alexa-ask", | ||
"version": "0.20.0", | ||
"version": "0.21.0", | ||
"description": "The CDK Construct Library for Alexa::ASK", | ||
@@ -56,13 +56,16 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@aws-cdk/assert": "^0.20.0", | ||
"cdk-build-tools": "^0.20.0", | ||
"cfn2ts": "^0.20.0", | ||
"pkglint": "^0.20.0" | ||
"@aws-cdk/assert": "^0.21.0", | ||
"cdk-build-tools": "^0.21.0", | ||
"cfn2ts": "^0.21.0", | ||
"pkglint": "^0.21.0" | ||
}, | ||
"dependencies": { | ||
"@aws-cdk/cdk": "^0.20.0" | ||
"@aws-cdk/cdk": "^0.21.0" | ||
}, | ||
"peerDependencies": { | ||
"@aws-cdk/cdk": "^0.20.0" | ||
"@aws-cdk/cdk": "^0.21.0" | ||
}, | ||
"engines": { | ||
"node": ">= 8.10.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
124869
636
+ Added@aws-cdk/cdk@0.21.0(transitive)
+ Added@aws-cdk/cx-api@0.21.0(transitive)
- Removed@aws-cdk/cdk@0.20.0(transitive)
- Removed@aws-cdk/cx-api@0.20.0(transitive)
Updated@aws-cdk/cdk@^0.21.0