Documentation
¶
Index ¶
- type EnvironmentEC2
- func (r *EnvironmentEC2) AWSCloudFormationType() string
- func (r *EnvironmentEC2) DeletionPolicy() policies.DeletionPolicy
- func (r *EnvironmentEC2) DependsOn() []string
- func (r EnvironmentEC2) MarshalJSON() ([]byte, error)
- func (r *EnvironmentEC2) Metadata() map[string]interface{}
- func (r *EnvironmentEC2) SetDeletionPolicy(policy policies.DeletionPolicy)
- func (r *EnvironmentEC2) SetDependsOn(dependencies []string)
- func (r *EnvironmentEC2) SetMetadata(metadata map[string]interface{})
- func (r *EnvironmentEC2) UnmarshalJSON(b []byte) error
- type EnvironmentEC2_Repository
- func (r *EnvironmentEC2_Repository) AWSCloudFormationType() string
- func (r *EnvironmentEC2_Repository) DeletionPolicy() policies.DeletionPolicy
- func (r *EnvironmentEC2_Repository) DependsOn() []string
- func (r *EnvironmentEC2_Repository) Metadata() map[string]interface{}
- func (r *EnvironmentEC2_Repository) SetDeletionPolicy(policy policies.DeletionPolicy)
- func (r *EnvironmentEC2_Repository) SetDependsOn(dependencies []string)
- func (r *EnvironmentEC2_Repository) SetMetadata(metadata map[string]interface{})
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnvironmentEC2 ¶
type EnvironmentEC2 struct { // AutomaticStopTimeMinutes AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-automaticstoptimeminutes AutomaticStopTimeMinutes int `json:"AutomaticStopTimeMinutes,omitempty"` // Description AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-description Description string `json:"Description,omitempty"` // InstanceType AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype InstanceType string `json:"InstanceType,omitempty"` // Name AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-name Name string `json:"Name,omitempty"` // OwnerArn AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-ownerarn OwnerArn string `json:"OwnerArn,omitempty"` // Repositories AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-repositories Repositories []EnvironmentEC2_Repository `json:"Repositories,omitempty"` // SubnetId AWS CloudFormation Property // Required: false // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-subnetid SubnetId string `json:"SubnetId,omitempty"` // contains filtered or unexported fields }
EnvironmentEC2 AWS CloudFormation Resource (AWS::Cloud9::EnvironmentEC2) See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html
func (*EnvironmentEC2) AWSCloudFormationType ¶
func (r *EnvironmentEC2) AWSCloudFormationType() string
AWSCloudFormationType returns the AWS CloudFormation resource type
func (*EnvironmentEC2) DeletionPolicy ¶
func (r *EnvironmentEC2) 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 (*EnvironmentEC2) DependsOn ¶
func (r *EnvironmentEC2) 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 (EnvironmentEC2) MarshalJSON ¶
func (r EnvironmentEC2) MarshalJSON() ([]byte, error)
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 (*EnvironmentEC2) Metadata ¶
func (r *EnvironmentEC2) 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 (*EnvironmentEC2) SetDeletionPolicy ¶
func (r *EnvironmentEC2) 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 (*EnvironmentEC2) SetDependsOn ¶
func (r *EnvironmentEC2) 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 (*EnvironmentEC2) SetMetadata ¶
func (r *EnvironmentEC2) 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
func (*EnvironmentEC2) UnmarshalJSON ¶
func (r *EnvironmentEC2) UnmarshalJSON(b []byte) error
UnmarshalJSON is a custom JSON unmarshalling hook that strips the outer AWS CloudFormation resource object, and just keeps the 'Properties' field.
type EnvironmentEC2_Repository ¶
type EnvironmentEC2_Repository struct { // PathComponent AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html#cfn-cloud9-environmentec2-repository-pathcomponent PathComponent string `json:"PathComponent,omitempty"` // RepositoryUrl AWS CloudFormation Property // Required: true // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html#cfn-cloud9-environmentec2-repository-repositoryurl RepositoryUrl string `json:"RepositoryUrl,omitempty"` // contains filtered or unexported fields }
EnvironmentEC2_Repository AWS CloudFormation Resource (AWS::Cloud9::EnvironmentEC2.Repository) See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html
func (*EnvironmentEC2_Repository) AWSCloudFormationType ¶
func (r *EnvironmentEC2_Repository) AWSCloudFormationType() string
AWSCloudFormationType returns the AWS CloudFormation resource type
func (*EnvironmentEC2_Repository) DeletionPolicy ¶
func (r *EnvironmentEC2_Repository) 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 (*EnvironmentEC2_Repository) DependsOn ¶
func (r *EnvironmentEC2_Repository) 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 (*EnvironmentEC2_Repository) Metadata ¶
func (r *EnvironmentEC2_Repository) 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 (*EnvironmentEC2_Repository) SetDeletionPolicy ¶
func (r *EnvironmentEC2_Repository) 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 (*EnvironmentEC2_Repository) SetDependsOn ¶
func (r *EnvironmentEC2_Repository) 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 (*EnvironmentEC2_Repository) SetMetadata ¶
func (r *EnvironmentEC2_Repository) 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