Class: Aws::CloudFormation::Types::SignalResourceInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

The input for the SignalResource action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#logical_resource_idString

The logical ID of the resource that you want to signal. The logical ID is the name of the resource that given in the template.

Returns:

  • (String)


7541
7542
7543
7544
7545
7546
7547
7548
# File 'lib/aws-sdk-cloudformation/types.rb', line 7541

class SignalResourceInput < Struct.new(
  :stack_name,
  :logical_resource_id,
  :unique_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#stack_nameString

The stack name or unique stack ID that includes the resource that you want to signal.

Returns:

  • (String)


7541
7542
7543
7544
7545
7546
7547
7548
# File 'lib/aws-sdk-cloudformation/types.rb', line 7541

class SignalResourceInput < Struct.new(
  :stack_name,
  :logical_resource_id,
  :unique_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the signal, which is either success or failure. A failure signal causes CloudFormation to immediately fail the stack creation or update.

Returns:

  • (String)


7541
7542
7543
7544
7545
7546
7547
7548
# File 'lib/aws-sdk-cloudformation/types.rb', line 7541

class SignalResourceInput < Struct.new(
  :stack_name,
  :logical_resource_id,
  :unique_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#unique_idString

A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups, specify the instance ID that you are signaling as the unique ID. If you send multiple signals to a single resource (such as signaling a wait condition), each signal requires a different unique ID.

Returns:

  • (String)


7541
7542
7543
7544
7545
7546
7547
7548
# File 'lib/aws-sdk-cloudformation/types.rb', line 7541

class SignalResourceInput < Struct.new(
  :stack_name,
  :logical_resource_id,
  :unique_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end