Class: Aws::CloudFormation::Types::ResourceIdentifierSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ResourceIdentifierSummary
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Describes the target resources of a specific type in your import
template (for example, all AWS::S3::Bucket
resources) and the
properties you can provide during the import to identify resources of
that type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#logical_resource_ids ⇒ Array<String>
The logical IDs of the target resources of the specified
ResourceType
, as defined in the import template. -
#resource_identifiers ⇒ Array<String>
The resource properties you can provide during the import to identify your target resources.
-
#resource_type ⇒ String
The template resource type of the target resources, such as
AWS::S3::Bucket
.
Instance Attribute Details
#logical_resource_ids ⇒ Array<String>
The logical IDs of the target resources of the specified
ResourceType
, as defined in the import template.
7219 7220 7221 7222 7223 7224 7225 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 7219 class ResourceIdentifierSummary < Struct.new( :resource_type, :logical_resource_ids, :resource_identifiers) SENSITIVE = [] include Aws::Structure end |
#resource_identifiers ⇒ Array<String>
The resource properties you can provide during the import to
identify your target resources. For example, BucketName
is a
possible identifier property for AWS::S3::Bucket
resources.
7219 7220 7221 7222 7223 7224 7225 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 7219 class ResourceIdentifierSummary < Struct.new( :resource_type, :logical_resource_ids, :resource_identifiers) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The template resource type of the target resources, such as
AWS::S3::Bucket
.
7219 7220 7221 7222 7223 7224 7225 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 7219 class ResourceIdentifierSummary < Struct.new( :resource_type, :logical_resource_ids, :resource_identifiers) SENSITIVE = [] include Aws::Structure end |