Class: Aws::ResilienceHub::Types::ListAppVersionResourceMappingsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResilienceHub::Types::ListAppVersionResourceMappingsResponse
- Defined in:
- gems/aws-sdk-resiliencehub/lib/aws-sdk-resiliencehub/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token for the next set of results, or null if there are no more results.
-
#resource_mappings ⇒ Array<Types::ResourceMapping>
Mappings used to map logical resources from the template to physical resources.
Instance Attribute Details
#next_token ⇒ String
The token for the next set of results, or null if there are no more results.
3021 3022 3023 3024 3025 3026 |
# File 'gems/aws-sdk-resiliencehub/lib/aws-sdk-resiliencehub/types.rb', line 3021 class ListAppVersionResourceMappingsResponse < Struct.new( :next_token, :resource_mappings) SENSITIVE = [] include Aws::Structure end |
#resource_mappings ⇒ Array<Types::ResourceMapping>
Mappings used to map logical resources from the template to physical
resources. You can use the mapping type CFN_STACK
if the
application template uses a logical stack name. Or you can map
individual resources by using the mapping type RESOURCE
. We
recommend using the mapping type CFN_STACK
if the application is
backed by a CloudFormation stack.
3021 3022 3023 3024 3025 3026 |
# File 'gems/aws-sdk-resiliencehub/lib/aws-sdk-resiliencehub/types.rb', line 3021 class ListAppVersionResourceMappingsResponse < Struct.new( :next_token, :resource_mappings) SENSITIVE = [] include Aws::Structure end |