Interface CfnSkill.OverridesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSkill.OverridesProperty.Jsii$Proxy
Enclosing class:
CfnSkill

@Stability(Stable) public static interface CfnSkill.OverridesProperty extends software.amazon.jsii.JsiiSerializable
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 Alexa::ASK::Skill SkillPackage property type.

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;
 OverridesProperty overridesProperty = OverridesProperty.builder()
         .manifest(manifest)
         .build();