Class: Aws::APIGateway::Types::DeleteResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteResourceRequest data as a hash:
{
rest_api_id: "String", # required
resource_id: "String", # required
}
Request to delete a Resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_id ⇒ String
[Required] The identifier of the Resource resource.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#resource_id ⇒ String
[Required] The identifier of the Resource resource.
2047 2048 2049 2050 2051 2052 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2047 class DeleteResourceRequest < Struct.new( :rest_api_id, :resource_id) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
2047 2048 2049 2050 2051 2052 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2047 class DeleteResourceRequest < Struct.new( :rest_api_id, :resource_id) SENSITIVE = [] include Aws::Structure end |