Class: Aws::AppRegistry::Types::SyncResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRegistry::Types::SyncResourceRequest
- Defined in:
- gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb
Overview
Note:
When making an API call, you may pass SyncResourceRequest data as a hash:
{
resource_type: "CFN_STACK", # required, accepts CFN_STACK
resource: "ResourceSpecifier", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource ⇒ String
An entity you can work with and specify with a name or ID.
-
#resource_type ⇒ String
The type of resource of which the application will be associated.
Instance Attribute Details
#resource ⇒ String
An entity you can work with and specify with a name or ID. Examples include an Amazon EC2 instance, an Amazon Web Services CloudFormation stack, or an Amazon S3 bucket.
1263 1264 1265 1266 1267 1268 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1263 class SyncResourceRequest < Struct.new( :resource_type, :resource) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of resource of which the application will be associated.
1263 1264 1265 1266 1267 1268 |
# File 'gems/aws-sdk-appregistry/lib/aws-sdk-appregistry/types.rb', line 1263 class SyncResourceRequest < Struct.new( :resource_type, :resource) SENSITIVE = [] include Aws::Structure end |