class Amazonite::Ssm::DocumentVersionInfo

Overview

Version information about the document.

Included Modules

Defined in:

ssm/document_version_info.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(name : String | Nil = nil, display_name : String | Nil = nil, document_version : String | Nil = nil, version_name : String | Nil = nil, created_date : Time | Nil = nil, is_default_version : Bool | Nil = nil, document_format : DocumentFormat | Nil = nil, status : DocumentStatus | Nil = nil, status_information : String | Nil = nil, review_status : ReviewStatus | 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 created_date : Time | Nil #

The date the document was created.


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

The date the document was created.


[View source]
def display_name : String | Nil #

The friendly name of the SSM document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.


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

The friendly name of the SSM document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.


[View source]
def document_format : DocumentFormat | Nil #

The document format, either JSON or YAML.


[View source]
def document_format=(document_format : DocumentFormat | Nil) #

The document format, either JSON or YAML.


[View source]
def document_version : String | Nil #

The document version.


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

The document version.


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

See Object#hash(hasher)


def is_default_version : Bool | Nil #

An identifier for the default version of the document.


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

An identifier for the default version of the document.


[View source]
def name : String | Nil #

The document name.


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

The document name.


[View source]
def review_status : ReviewStatus | Nil #

The current status of the approval review for the latest version of the document.


[View source]
def review_status=(review_status : ReviewStatus | Nil) #

The current status of the approval review for the latest version of the document.


[View source]
def status : DocumentStatus | Nil #

The status of the SSM document, such as Creating, Active, Failed, and Deleting.


[View source]
def status=(status : DocumentStatus | Nil) #

The status of the SSM document, such as Creating, Active, Failed, and Deleting.


[View source]
def status_information : String | Nil #

A message returned by Amazon Web Services Systems Manager that explains the Status value. For example, a Failed status might be explained by the StatusInformation message, "The specified S3 bucket doesn't exist. Verify that the URL of the S3 bucket is correct."


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

A message returned by Amazon Web Services Systems Manager that explains the Status value. For example, a Failed status might be explained by the StatusInformation message, "The specified S3 bucket doesn't exist. Verify that the URL of the S3 bucket is correct."


[View source]
def validate! : Nil #

[View source]
def version_name : String | Nil #

The version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.


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

The version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.


[View source]