Documentation
¶
Index ¶
- func CfnSkill_CFN_RESOURCE_TYPE_NAME() *string
- func CfnSkill_IsCfnElement(x interface{}) *bool
- func CfnSkill_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnSkill_IsConstruct(x interface{}) *bool
- func NewCfnSkill_Override(c CfnSkill, scope constructs.Construct, id *string, props *CfnSkillProps)
- type CfnSkill
- type CfnSkillProps
- type CfnSkill_AuthenticationConfigurationProperty
- type CfnSkill_OverridesProperty
- type CfnSkill_SkillPackageProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnSkill_CFN_RESOURCE_TYPE_NAME ¶
func CfnSkill_CFN_RESOURCE_TYPE_NAME() *string
func CfnSkill_IsCfnElement ¶
func CfnSkill_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnSkill_IsCfnResource ¶
func CfnSkill_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnSkill_IsConstruct ¶
func CfnSkill_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnSkill_Override ¶
func NewCfnSkill_Override(c CfnSkill, scope constructs.Construct, id *string, props *CfnSkillProps)
Create a new `Alexa::ASK::Skill`.
Types ¶
type CfnSkill ¶
type CfnSkill interface {
awscdk.CfnResource
awscdk.IInspectable
AuthenticationConfiguration() interface{}
SetAuthenticationConfiguration(val interface{})
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CreationStack() *[]*string
LogicalId() *string
Node() constructs.Node
Ref() *string
SkillPackage() interface{}
SetSkillPackage(val interface{})
Stack() awscdk.Stack
UpdatedProperites() *map[string]interface{}
VendorId() *string
SetVendorId(val *string)
AddDeletionOverride(path *string)
AddDependsOn(target awscdk.CfnResource)
AddMetadata(key *string, value interface{})
AddOverride(path *string, value interface{})
AddPropertyDeletionOverride(propertyPath *string)
AddPropertyOverride(propertyPath *string, value interface{})
ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
GetAtt(attributeName *string) awscdk.Reference
GetMetadata(key *string) interface{}
Inspect(inspector awscdk.TreeInspector)
OverrideLogicalId(newLogicalId *string)
RenderProperties(props *map[string]interface{}) *map[string]interface{}
ShouldSynthesize() *bool
ToString() *string
ValidateProperties(_properties interface{})
}
A CloudFormation `Alexa::ASK::Skill`.
TODO: EXAMPLE
func NewCfnSkill ¶
func NewCfnSkill(scope constructs.Construct, id *string, props *CfnSkillProps) CfnSkill
Create a new `Alexa::ASK::Skill`.
type CfnSkillProps ¶
type CfnSkillProps struct {
// `Alexa::ASK::Skill.AuthenticationConfiguration`.
AuthenticationConfiguration interface{} `json:"authenticationConfiguration"`
// `Alexa::ASK::Skill.SkillPackage`.
SkillPackage interface{} `json:"skillPackage"`
// `Alexa::ASK::Skill.VendorId`.
VendorId *string `json:"vendorId"`
}
Properties for defining a `Alexa::ASK::Skill`.
TODO: EXAMPLE
type CfnSkill_AuthenticationConfigurationProperty ¶
type CfnSkill_AuthenticationConfigurationProperty struct {
// `CfnSkill.AuthenticationConfigurationProperty.ClientId`.
ClientId *string `json:"clientId"`
// `CfnSkill.AuthenticationConfigurationProperty.ClientSecret`.
ClientSecret *string `json:"clientSecret"`
// `CfnSkill.AuthenticationConfigurationProperty.RefreshToken`.
RefreshToken *string `json:"refreshToken"`
}
TODO: EXAMPLE
type CfnSkill_OverridesProperty ¶
type CfnSkill_OverridesProperty struct {
// `CfnSkill.OverridesProperty.Manifest`.
Manifest interface{} `json:"manifest"`
}
TODO: EXAMPLE
type CfnSkill_SkillPackageProperty ¶
type CfnSkill_SkillPackageProperty struct {
// `CfnSkill.SkillPackageProperty.Overrides`.
Overrides interface{} `json:"overrides"`
// `CfnSkill.SkillPackageProperty.S3Bucket`.
S3Bucket *string `json:"s3Bucket"`
// `CfnSkill.SkillPackageProperty.S3BucketRole`.
S3BucketRole *string `json:"s3BucketRole"`
// `CfnSkill.SkillPackageProperty.S3Key`.
S3Key *string `json:"s3Key"`
// `CfnSkill.SkillPackageProperty.S3ObjectVersion`.
S3ObjectVersion *string `json:"s3ObjectVersion"`
}
TODO: EXAMPLE