Class: Aws::CloudFormation::Types::PhysicalResourceIdContextKeyValuePair

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

Overview

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 resource that contains the targeted resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The resource context key.

Returns:

  • (String)


6168
6169
6170
6171
6172
6173
# File 'lib/aws-sdk-cloudformation/types.rb', line 6168

class PhysicalResourceIdContextKeyValuePair < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The resource context value.

Returns:

  • (String)


6168
6169
6170
6171
6172
6173
# File 'lib/aws-sdk-cloudformation/types.rb', line 6168

class PhysicalResourceIdContextKeyValuePair < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end