class Amazonite::CloudFormation::ImportStacksToStackSetInput

Defined in:

cloudformation/import_stacks_to_stack_set_input.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(stack_set_name : String, stack_ids : Array(String) | Nil = nil, stack_ids_url : String | Nil = nil, organizational_unit_ids : Array(String) | Nil = nil, operation_preferences : StackSetOperationPreferences | Nil = nil, operation_id : String | Nil = nil, call_as : CallAs | 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 call_as : CallAs | Nil #

By default, SELF is specified. Use SELF for StackSets with self-managed permissions.

  • If you are signed in to the management account, specify SELF.

  • For service managed StackSets, specify DELEGATED_ADMIN.


[View source]
def call_as=(call_as : CallAs | Nil) #

By default, SELF is specified. Use SELF for StackSets with self-managed permissions.

  • If you are signed in to the management account, specify SELF.

  • For service managed StackSets, specify DELEGATED_ADMIN.


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

See Object#hash(hasher)


def operation_id : String | Nil #

A unique, user defined, identifier for the StackSet operation.


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

A unique, user defined, identifier for the StackSet operation.


[View source]
def operation_preferences : StackSetOperationPreferences | Nil #

The user-specified preferences for how CloudFormation performs a StackSet operation.

For more information about maximum concurrent accounts and failure tolerance, see StackSet operation options.


[View source]
def operation_preferences=(operation_preferences : StackSetOperationPreferences | Nil) #

The user-specified preferences for how CloudFormation performs a StackSet operation.

For more information about maximum concurrent accounts and failure tolerance, see StackSet operation options.


[View source]
def organizational_unit_ids : Array(String) | Nil #

The list of OU ID's to which the imported stacks must be mapped as deployment targets.


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

The list of OU ID's to which the imported stacks must be mapped as deployment targets.


[View source]
def stack_ids : Array(String) | Nil #

The IDs of the stacks you are importing into a StackSet. You import up to 10 stacks per StackSet at a time.

Specify either StackIds or StackIdsUrl.


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

The IDs of the stacks you are importing into a StackSet. You import up to 10 stacks per StackSet at a time.

Specify either StackIds or StackIdsUrl.


[View source]
def stack_ids_url : String | Nil #

The Amazon S3 URL which contains list of stack ids to be inputted.

Specify either StackIds or StackIdsUrl.


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

The Amazon S3 URL which contains list of stack ids to be inputted.

Specify either StackIds or StackIdsUrl.


[View source]
def stack_set_name : String #

The name of the StackSet. The name must be unique in the Region where you create your StackSet.


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

The name of the StackSet. The name must be unique in the Region where you create your StackSet.


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

[View source]
def validate! : Nil #

[View source]