class Amazonite::CloudFormation::StackInstanceResourceDriftsSummary

Overview

The structure containing summary information about resource drifts for a stack instance.

Defined in:

cloudformation/stack_instance_resource_drifts_summary.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(stack_id : String, logical_resource_id : String, resource_type : String, stack_resource_drift_status : StackResourceDriftStatus, timestamp : Time, physical_resource_id : String | Nil = nil, physical_resource_id_context : Array(PhysicalResourceIdContextKeyValuePair) | Nil = nil, property_differences : Array(PropertyDifference) | 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 hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def logical_resource_id : String #

The logical name of the resource specified in the template.


[View source]
def logical_resource_id=(logical_resource_id : String) #

The logical name of the resource specified in the template.


[View source]
def physical_resource_id : String | Nil #

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.


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

The name or unique identifier that corresponds to a physical instance ID of a resource supported by CloudFormation.


[View source]
def physical_resource_id_context : Array(PhysicalResourceIdContextKeyValuePair) | Nil #

Context information that enables CloudFormation to uniquely identify a resource. CloudFormation uses context key-value pairs in cases where a resource's logical and physical IDs aren't enough to uniquely identify that resource. Each context key-value pair specifies a unique resource that contains the targeted resource.


[View source]
def physical_resource_id_context=(physical_resource_id_context : Array(PhysicalResourceIdContextKeyValuePair) | Nil) #

Context information that enables CloudFormation to uniquely identify a resource. CloudFormation uses context key-value pairs in cases where a resource's logical and physical IDs aren't enough to uniquely identify that resource. Each context key-value pair specifies a unique resource that contains the targeted resource.


[View source]
def property_differences : Array(PropertyDifference) | Nil #

Status of the actual configuration of the resource compared to its expected configuration. These will be present only for resources whose StackInstanceResourceDriftStatus is MODIFIED.


[View source]
def property_differences=(property_differences : Array(PropertyDifference) | Nil) #

Status of the actual configuration of the resource compared to its expected configuration. These will be present only for resources whose StackInstanceResourceDriftStatus is MODIFIED.


[View source]
def resource_type : String #

Type of resource. For more information, see Amazon Web Services resource and property types reference in the CloudFormation User Guide.


[View source]
def resource_type=(resource_type : String) #

Type of resource. For more information, see Amazon Web Services resource and property types reference in the CloudFormation User Guide.


[View source]
def stack_id : String #

The ID of the stack instance.


[View source]
def stack_id=(stack_id : String) #

The ID of the stack instance.


[View source]
def stack_resource_drift_status : StackResourceDriftStatus #

The drift status of the resource in a stack instance.

  • DELETED: The resource differs from its expected template configuration in that the resource has been deleted.

  • MODIFIED: One or more resource properties differ from their expected template values.

  • IN_SYNC: The resource's actual configuration matches its expected template configuration.

  • NOT_CHECKED: CloudFormation doesn't currently return this value.


[View source]
def stack_resource_drift_status=(stack_resource_drift_status : StackResourceDriftStatus) #

The drift status of the resource in a stack instance.

  • DELETED: The resource differs from its expected template configuration in that the resource has been deleted.

  • MODIFIED: One or more resource properties differ from their expected template values.

  • IN_SYNC: The resource's actual configuration matches its expected template configuration.

  • NOT_CHECKED: CloudFormation doesn't currently return this value.


[View source]
def timestamp : Time #

Time at which the stack instance drift detection operation was initiated.


[View source]
def timestamp=(timestamp : Time) #

Time at which the stack instance drift detection operation was initiated.


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

[View source]
def validate! : Nil #

[View source]