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)


6157
6158
6159
6160
6161
6162
# File 'lib/aws-sdk-cloudformation/types.rb', line 6157

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

#valueString

The resource context value.

Returns:

  • (String)


6157
6158
6159
6160
6161
6162
# File 'lib/aws-sdk-cloudformation/types.rb', line 6157

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