class Amazonite::CloudFormation::StackSetSummary

Overview

The structures that contain summary information about the specified StackSet.

Defined in:

cloudformation/stack_set_summary.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(stack_set_name : String | Nil = nil, stack_set_id : String | Nil = nil, description : String | Nil = nil, status : StackSetStatus | Nil = nil, auto_deployment : AutoDeployment | Nil = nil, permission_model : PermissionModels | Nil = nil, drift_status : StackDriftStatus | Nil = nil, last_drift_check_timestamp : Time | Nil = nil, managed_execution : ManagedExecution | 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_deployment : AutoDeployment | Nil #

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organizational unit (OU).


[View source]
def auto_deployment=(auto_deployment : AutoDeployment | Nil) #

[Service-managed permissions] Describes whether StackSets automatically deploys to Organizations accounts that are added to a target organizational unit (OU).


[View source]
def description : String | Nil #

A description of the StackSet that you specify when the StackSet is created or updated.


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

A description of the StackSet that you specify when the StackSet is created or updated.


[View source]
def drift_status : StackDriftStatus | Nil #

Status of the StackSet's actual configuration compared to its expected template and parameter configuration.

  • DRIFTED: One or more of the stack instances belonging to the StackSet differs from the expected template and parameter configuration. A stack instance is considered to have drifted if one or more of the resources in the associated stack have drifted.

  • NOT_CHECKED: CloudFormation hasn't checked the StackSet for drift.

  • IN_SYNC: All the stack instances belonging to the StackSet match the expected template and parameter configuration.

  • UNKNOWN: This value is reserved for future use.


[View source]
def drift_status=(drift_status : StackDriftStatus | Nil) #

Status of the StackSet's actual configuration compared to its expected template and parameter configuration.

  • DRIFTED: One or more of the stack instances belonging to the StackSet differs from the expected template and parameter configuration. A stack instance is considered to have drifted if one or more of the resources in the associated stack have drifted.

  • NOT_CHECKED: CloudFormation hasn't checked the StackSet for drift.

  • IN_SYNC: All the stack instances belonging to the StackSet match the expected template and parameter configuration.

  • UNKNOWN: This value is reserved for future use.


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

See Object#hash(hasher)


def last_drift_check_timestamp : Time | Nil #

Most recent time when CloudFormation performed a drift detection operation on the StackSet. This value will be NULL for any StackSet that drift detection hasn't yet been performed on.


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

Most recent time when CloudFormation performed a drift detection operation on the StackSet. This value will be NULL for any StackSet that drift detection hasn't yet been performed on.


[View source]
def managed_execution : ManagedExecution | Nil #

Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.


[View source]
def managed_execution=(managed_execution : ManagedExecution | Nil) #

Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.


[View source]
def permission_model : PermissionModels | Nil #

Describes how the IAM roles required for StackSet operations are created.


[View source]
def permission_model=(permission_model : PermissionModels | Nil) #

Describes how the IAM roles required for StackSet operations are created.


[View source]
def stack_set_id : String | Nil #

The ID of the StackSet.


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

The ID of the StackSet.


[View source]
def stack_set_name : String | Nil #

The name of the StackSet.


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

The name of the StackSet.


[View source]
def status : StackSetStatus | Nil #

The status of the StackSet.


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

The status of the StackSet.


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

[View source]
def validate! : Nil #

[View source]