Class: Aws::ConfigService::Types::DeleteResourceConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DeleteResourceConfigRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass DeleteResourceConfigRequest data as a hash:
{
resource_type: "ResourceTypeString", # required
resource_id: "ResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_id ⇒ String
Unique identifier of the resource.
-
#resource_type ⇒ String
The type of the resource.
Instance Attribute Details
#resource_id ⇒ String
Unique identifier of the resource.
2281 2282 2283 2284 2285 2286 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2281 class DeleteResourceConfigRequest < Struct.new( :resource_type, :resource_id) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of the resource.
2281 2282 2283 2284 2285 2286 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2281 class DeleteResourceConfigRequest < Struct.new( :resource_type, :resource_id) SENSITIVE = [] include Aws::Structure end |