Documentation
¶
Index ¶
- type Skill
- func (r *Skill) AWSCloudFormationType() string
- func (r *Skill) DeletionPolicy() policies.DeletionPolicy
- func (r *Skill) DependsOn() []string
- func (r Skill) MarshalJSON() ([]byte, error)
- func (r *Skill) Metadata() map[string]interface{}
- func (r *Skill) SetDeletionPolicy(policy policies.DeletionPolicy)
- func (r *Skill) SetDependsOn(dependencies []string)
- func (r *Skill) SetMetadata(metadata map[string]interface{})
- func (r *Skill) UnmarshalJSON(b []byte) error
- type Skill_AuthenticationConfiguration
- func (r *Skill_AuthenticationConfiguration) AWSCloudFormationType() string
- func (r *Skill_AuthenticationConfiguration) DeletionPolicy() policies.DeletionPolicy
- func (r *Skill_AuthenticationConfiguration) DependsOn() []string
- func (r *Skill_AuthenticationConfiguration) Metadata() map[string]interface{}
- func (r *Skill_AuthenticationConfiguration) SetDeletionPolicy(policy policies.DeletionPolicy)
- func (r *Skill_AuthenticationConfiguration) SetDependsOn(dependencies []string)
- func (r *Skill_AuthenticationConfiguration) SetMetadata(metadata map[string]interface{})
- type Skill_Overrides
- func (r *Skill_Overrides) AWSCloudFormationType() string
- func (r *Skill_Overrides) DeletionPolicy() policies.DeletionPolicy
- func (r *Skill_Overrides) DependsOn() []string
- func (r *Skill_Overrides) Metadata() map[string]interface{}
- func (r *Skill_Overrides) SetDeletionPolicy(policy policies.DeletionPolicy)
- func (r *Skill_Overrides) SetDependsOn(dependencies []string)
- func (r *Skill_Overrides) SetMetadata(metadata map[string]interface{})
- type Skill_SkillPackage
- func (r *Skill_SkillPackage) AWSCloudFormationType() string
- func (r *Skill_SkillPackage) DeletionPolicy() policies.DeletionPolicy
- func (r *Skill_SkillPackage) DependsOn() []string
- func (r *Skill_SkillPackage) Metadata() map[string]interface{}
- func (r *Skill_SkillPackage) SetDeletionPolicy(policy policies.DeletionPolicy)
- func (r *Skill_SkillPackage) SetDependsOn(dependencies []string)
- func (r *Skill_SkillPackage) SetMetadata(metadata map[string]interface{})
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Skill ¶
type Skill struct { // AuthenticationConfiguration AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-authenticationconfiguration AuthenticationConfiguration *Skill_AuthenticationConfiguration `json:"AuthenticationConfiguration,omitempty"` // SkillPackage AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-skillpackage SkillPackage *Skill_SkillPackage `json:"SkillPackage,omitempty"` // VendorId AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html#cfn-ask-skill-vendorid VendorId string `json:"VendorId,omitempty"` // contains filtered or unexported fields }
Skill AWS CloudFormation Resource (Alexa::ASK::Skill) See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html
func (*Skill) AWSCloudFormationType ¶
AWSCloudFormationType returns the AWS CloudFormation resource type
func (*Skill) DeletionPolicy ¶
func (r *Skill) DeletionPolicy() policies.DeletionPolicy
DeletionPolicy returns the AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill) DependsOn ¶
DependsOn returns a slice of logical ID names this resource depends on. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (Skill) MarshalJSON ¶
MarshalJSON is a custom JSON marshalling hook that embeds this object into an AWS CloudFormation JSON resource's 'Properties' field and adds a 'Type'.
func (*Skill) Metadata ¶
Metadata returns the metadata associated with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
func (*Skill) SetDeletionPolicy ¶
func (r *Skill) SetDeletionPolicy(policy policies.DeletionPolicy)
SetDeletionPolicy applies an AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill) SetDependsOn ¶
SetDependsOn specify that the creation of this resource follows another. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (*Skill) SetMetadata ¶
SetMetadata enables you to associate structured data with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
func (*Skill) UnmarshalJSON ¶
UnmarshalJSON is a custom JSON unmarshalling hook that strips the outer AWS CloudFormation resource object, and just keeps the 'Properties' field.
type Skill_AuthenticationConfiguration ¶
type Skill_AuthenticationConfiguration struct { // ClientId AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientid ClientId string `json:"ClientId,omitempty"` // ClientSecret AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-clientsecret ClientSecret string `json:"ClientSecret,omitempty"` // RefreshToken AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html#cfn-ask-skill-authenticationconfiguration-refreshtoken RefreshToken string `json:"RefreshToken,omitempty"` // contains filtered or unexported fields }
Skill_AuthenticationConfiguration AWS CloudFormation Resource (Alexa::ASK::Skill.AuthenticationConfiguration) See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-authenticationconfiguration.html
func (*Skill_AuthenticationConfiguration) AWSCloudFormationType ¶
func (r *Skill_AuthenticationConfiguration) AWSCloudFormationType() string
AWSCloudFormationType returns the AWS CloudFormation resource type
func (*Skill_AuthenticationConfiguration) DeletionPolicy ¶
func (r *Skill_AuthenticationConfiguration) DeletionPolicy() policies.DeletionPolicy
DeletionPolicy returns the AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill_AuthenticationConfiguration) DependsOn ¶
func (r *Skill_AuthenticationConfiguration) DependsOn() []string
DependsOn returns a slice of logical ID names this resource depends on. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (*Skill_AuthenticationConfiguration) Metadata ¶
func (r *Skill_AuthenticationConfiguration) Metadata() map[string]interface{}
Metadata returns the metadata associated with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
func (*Skill_AuthenticationConfiguration) SetDeletionPolicy ¶
func (r *Skill_AuthenticationConfiguration) SetDeletionPolicy(policy policies.DeletionPolicy)
SetDeletionPolicy applies an AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill_AuthenticationConfiguration) SetDependsOn ¶
func (r *Skill_AuthenticationConfiguration) SetDependsOn(dependencies []string)
SetDependsOn specify that the creation of this resource follows another. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (*Skill_AuthenticationConfiguration) SetMetadata ¶
func (r *Skill_AuthenticationConfiguration) SetMetadata(metadata map[string]interface{})
SetMetadata enables you to associate structured data with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
type Skill_Overrides ¶
type Skill_Overrides struct { // Manifest AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html#cfn-ask-skill-overrides-manifest Manifest interface{} `json:"Manifest,omitempty"` // contains filtered or unexported fields }
Skill_Overrides AWS CloudFormation Resource (Alexa::ASK::Skill.Overrides) See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-overrides.html
func (*Skill_Overrides) AWSCloudFormationType ¶
func (r *Skill_Overrides) AWSCloudFormationType() string
AWSCloudFormationType returns the AWS CloudFormation resource type
func (*Skill_Overrides) DeletionPolicy ¶
func (r *Skill_Overrides) DeletionPolicy() policies.DeletionPolicy
DeletionPolicy returns the AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill_Overrides) DependsOn ¶
func (r *Skill_Overrides) DependsOn() []string
DependsOn returns a slice of logical ID names this resource depends on. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (*Skill_Overrides) Metadata ¶
func (r *Skill_Overrides) Metadata() map[string]interface{}
Metadata returns the metadata associated with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
func (*Skill_Overrides) SetDeletionPolicy ¶
func (r *Skill_Overrides) SetDeletionPolicy(policy policies.DeletionPolicy)
SetDeletionPolicy applies an AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill_Overrides) SetDependsOn ¶
func (r *Skill_Overrides) SetDependsOn(dependencies []string)
SetDependsOn specify that the creation of this resource follows another. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (*Skill_Overrides) SetMetadata ¶
func (r *Skill_Overrides) SetMetadata(metadata map[string]interface{})
SetMetadata enables you to associate structured data with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
type Skill_SkillPackage ¶
type Skill_SkillPackage struct { // Overrides AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-overrides Overrides *Skill_Overrides `json:"Overrides,omitempty"` // S3Bucket AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucket S3Bucket string `json:"S3Bucket,omitempty"` // S3BucketRole AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3bucketrole S3BucketRole string `json:"S3BucketRole,omitempty"` // S3Key AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3key S3Key string `json:"S3Key,omitempty"` // S3ObjectVersion AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html#cfn-ask-skill-skillpackage-s3objectversion S3ObjectVersion string `json:"S3ObjectVersion,omitempty"` // contains filtered or unexported fields }
Skill_SkillPackage AWS CloudFormation Resource (Alexa::ASK::Skill.SkillPackage) See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ask-skill-skillpackage.html
func (*Skill_SkillPackage) AWSCloudFormationType ¶
func (r *Skill_SkillPackage) AWSCloudFormationType() string
AWSCloudFormationType returns the AWS CloudFormation resource type
func (*Skill_SkillPackage) DeletionPolicy ¶
func (r *Skill_SkillPackage) DeletionPolicy() policies.DeletionPolicy
DeletionPolicy returns the AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill_SkillPackage) DependsOn ¶
func (r *Skill_SkillPackage) DependsOn() []string
DependsOn returns a slice of logical ID names this resource depends on. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (*Skill_SkillPackage) Metadata ¶
func (r *Skill_SkillPackage) Metadata() map[string]interface{}
Metadata returns the metadata associated with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html
func (*Skill_SkillPackage) SetDeletionPolicy ¶
func (r *Skill_SkillPackage) SetDeletionPolicy(policy policies.DeletionPolicy)
SetDeletionPolicy applies an AWS CloudFormation DeletionPolicy to this resource see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
func (*Skill_SkillPackage) SetDependsOn ¶
func (r *Skill_SkillPackage) SetDependsOn(dependencies []string)
SetDependsOn specify that the creation of this resource follows another. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html
func (*Skill_SkillPackage) SetMetadata ¶
func (r *Skill_SkillPackage) SetMetadata(metadata map[string]interface{})
SetMetadata enables you to associate structured data with this resource. see: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html