class Amazonite::CloudFormation::ActivateTypeInput

Defined in:

cloudformation/activate_type_input.cr

Constructors

Instance Method Summary

Constructor Detail

def self.from_xml(node : XML::Node) : self #

[View source]
def self.new(type : ThirdPartyType | Nil = nil, public_type_arn : String | Nil = nil, publisher_id : String | Nil = nil, type_name : String | Nil = nil, type_name_alias : String | Nil = nil, auto_update : Bool | Nil = nil, logging_config : LoggingConfig | Nil = nil, execution_role_arn : String | Nil = nil, version_bump : VersionBump | Nil = nil, major_version : Int64 | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def auto_update : Bool | Nil #

Whether to automatically update the extension in this account and Region when a new minor version is published by the extension publisher. Major versions released by the publisher must be manually updated.

The default is true.


[View source]
def auto_update=(auto_update : Bool | Nil) #

Whether to automatically update the extension in this account and Region when a new minor version is published by the extension publisher. Major versions released by the publisher must be manually updated.

The default is true.


[View source]
def execution_role_arn : String | Nil #

The name of the IAM execution role to use to activate the extension.


[View source]
def execution_role_arn=(execution_role_arn : String | Nil) #

The name of the IAM execution role to use to activate the extension.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def logging_config : LoggingConfig | Nil #

Contains logging configuration information for an extension.


[View source]
def logging_config=(logging_config : LoggingConfig | Nil) #

Contains logging configuration information for an extension.


[View source]
def major_version : Int64 | Nil #

The major version of this extension you want to activate, if multiple major versions are available. The default is the latest major version. CloudFormation uses the latest available minor version of the major version selected.

You can specify MajorVersion or VersionBump, but not both.


[View source]
def major_version=(major_version : Int64 | Nil) #

The major version of this extension you want to activate, if multiple major versions are available. The default is the latest major version. CloudFormation uses the latest available minor version of the major version selected.

You can specify MajorVersion or VersionBump, but not both.


[View source]
def public_type_arn : String | Nil #

The Amazon Resource Name (ARN) of the public extension.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def public_type_arn=(public_type_arn : String | Nil) #

The Amazon Resource Name (ARN) of the public extension.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def publisher_id : String | Nil #

The ID of the extension publisher.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def publisher_id=(publisher_id : String | Nil) #

The ID of the extension publisher.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def to_query_params(prefix : String) : Array(Tuple(String, String)) #

[View source]
def type : ThirdPartyType | Nil #

The extension type.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def type=(type : ThirdPartyType | Nil) #

The extension type.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def type_name : String | Nil #

The name of the extension.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def type_name=(type_name : String | Nil) #

The name of the extension.

Conditional: You must specify PublicTypeArn, or TypeName, Type, and PublisherId.


[View source]
def type_name_alias : String | Nil #

An alias to assign to the public extension in this account and Region. If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console.

An extension alias must be unique within a given account and Region. You can activate the same public resource multiple times in the same account and Region, using different type name aliases.


[View source]
def type_name_alias=(type_name_alias : String | Nil) #

An alias to assign to the public extension in this account and Region. If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console.

An extension alias must be unique within a given account and Region. You can activate the same public resource multiple times in the same account and Region, using different type name aliases.


[View source]
def validate! : Nil #

[View source]
def version_bump : VersionBump | Nil #

Manually updates a previously-activated type to a new major or minor version, if available. You can also use this parameter to update the value of AutoUpdate.

  • MAJOR: CloudFormation updates the extension to the newest major version, if one is available.

  • MINOR: CloudFormation updates the extension to the newest minor version, if one is available.


[View source]
def version_bump=(version_bump : VersionBump | Nil) #

Manually updates a previously-activated type to a new major or minor version, if available. You can also use this parameter to update the value of AutoUpdate.

  • MAJOR: CloudFormation updates the extension to the newest major version, if one is available.

  • MINOR: CloudFormation updates the extension to the newest minor version, if one is available.


[View source]