Class: Aws::CloudFormation::Types::ResourceToImport
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ResourceToImport
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
Describes the target resource of an import operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#logical_resource_id ⇒ String
The logical ID of the target resource as specified in the template.
-
#resource_identifier ⇒ Hash<String,String>
A key-value pair that identifies the target resource.
-
#resource_type ⇒ String
The type of resource to import into your stack, such as ‘AWS::S3::Bucket`.
Instance Attribute Details
#logical_resource_id ⇒ String
The logical ID of the target resource as specified in the template.
7445 7446 7447 7448 7449 7450 7451 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 7445 class ResourceToImport < Struct.new( :resource_type, :logical_resource_id, :resource_identifier) SENSITIVE = [] include Aws::Structure end |
#resource_identifier ⇒ Hash<String,String>
A key-value pair that identifies the target resource. The key is an identifier property (for example, ‘BucketName` for `AWS::S3::Bucket` resources) and the value is the actual property value (for example, `MyS3Bucket`).
7445 7446 7447 7448 7449 7450 7451 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 7445 class ResourceToImport < Struct.new( :resource_type, :logical_resource_id, :resource_identifier) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of resource to import into your stack, such as ‘AWS::S3::Bucket`. For a list of supported resource types, see
- Resource type support for imports and drift detection][1
-
in the
*CloudFormation User Guide*.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html
7445 7446 7447 7448 7449 7450 7451 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 7445 class ResourceToImport < Struct.new( :resource_type, :logical_resource_id, :resource_identifier) SENSITIVE = [] include Aws::Structure end |