Class: Aws::APIGateway::Types::CreateResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::CreateResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass CreateResourceRequest data as a hash:
{
rest_api_id: "String", # required
parent_id: "String", # required
path_part: "String", # required
}
Requests API Gateway to create a Resource resource.
Instance Attribute Summary collapse
-
#parent_id ⇒ String
The parent resource’s identifier.
-
#path_part ⇒ String
The last path segment for this resource.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
permalink #parent_id ⇒ String
The parent resource’s identifier.
1122 1123 1124 1125 1126 1127 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1122 class CreateResourceRequest < Struct.new( :rest_api_id, :parent_id, :path_part) include Aws::Structure end |
permalink #path_part ⇒ String
The last path segment for this resource.
1122 1123 1124 1125 1126 1127 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1122 class CreateResourceRequest < Struct.new( :rest_api_id, :parent_id, :path_part) include Aws::Structure end |
permalink #rest_api_id ⇒ String
The string identifier of the associated RestApi.
1122 1123 1124 1125 1126 1127 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1122 class CreateResourceRequest < Struct.new( :rest_api_id, :parent_id, :path_part) include Aws::Structure end |