class Amazonite::CloudFormation::TypeVersionSummary

Overview

Contains summary information about a specific version of a CloudFormation extension.

Defined in:

cloudformation/type_version_summary.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(type : RegistryType | Nil = nil, type_name : String | Nil = nil, version_id : String | Nil = nil, is_default_version : Bool | Nil = nil, arn : String | Nil = nil, time_created : Time | Nil = nil, description : String | Nil = nil, public_version_number : String | 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 arn : String | Nil #

The ARN of the extension version.


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

The ARN of the extension version.


[View source]
def description : String | Nil #

The description of the extension version.


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

The description of the extension version.


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

See Object#hash(hasher)


def is_default_version : Bool | Nil #

Whether the specified extension version is set as the default version.

This applies only to private extensions you have registered in your account, and extensions published by Amazon. For public third-party extensions, CloudFormation returns null.


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

Whether the specified extension version is set as the default version.

This applies only to private extensions you have registered in your account, and extensions published by Amazon. For public third-party extensions, CloudFormation returns null.


[View source]
def public_version_number : String | Nil #

For public extensions that have been activated for this account and Region, the version of the public extension to be used for CloudFormation operations in this account and Region. For any extensions other than activated third-party extensions, CloudFormation returns null.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extension in this account and Region when a new version is released. For more information, see Automatically use new versions of extensions in the CloudFormation User Guide.


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

For public extensions that have been activated for this account and Region, the version of the public extension to be used for CloudFormation operations in this account and Region. For any extensions other than activated third-party extensions, CloudFormation returns null.

How you specified AutoUpdate when enabling the extension affects whether CloudFormation automatically updates the extension in this account and Region when a new version is released. For more information, see Automatically use new versions of extensions in the CloudFormation User Guide.


[View source]
def time_created : Time | Nil #

When the version was registered.


[View source]
def time_created=(time_created : Time | Nil) #

When the version was registered.


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

[View source]
def type : RegistryType | Nil #

The kind of extension.


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

The kind of extension.


[View source]
def type_name : String | Nil #

The name of the extension.


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

The name of the extension.


[View source]
def validate! : Nil #

[View source]
def version_id : String | Nil #

The ID of a specific version of the extension. The version ID is the value at the end of the ARN assigned to the extension version when it's registered.


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

The ID of a specific version of the extension. The version ID is the value at the end of the ARN assigned to the extension version when it's registered.


[View source]