Alexa::ASK::Skill Overrides
The Overrides property type
provides overrides to the skill package to apply when creating or updating the skill.
Values provided
here do not modify the contents of the original skill package. Currently, only overriding
values
inside of the skill manifest component of the package is supported.
Overrides is a property of the SkillPackage property type.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "Manifest" :JSON object}
YAML
Manifest:JSON object
Properties
Manifest-
Overrides to apply to the skill manifest inside of the skill package. The skill manifest contains metadata about the skill. For more information, see Skill Manifest Schemas.
Required: No
Type: JSON object
Update requires: No interruption
Examples
JSON
"Manifest": { "publishingInformation": { "locales": { "en-US": { "summary": "Sample Short Description", } }, "category": "EDUCATION_AND_REFERENCE" } }
YAML
Manifest: publishingInformation: locales: en-US: summary: "Sample Short Description" category: "EDUCATION_AND_REFERENCE"
