Class: Aws::OpenSearchService::Types::DescribeReservedInstancesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DescribeReservedInstancesRequest
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
Note:
When making an API call, you may pass DescribeReservedInstancesRequest data as a hash:
{
reserved_instance_id: "GUID",
max_results: 1,
next_token: "NextToken",
}
Container for parameters to DescribeReservedInstances
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Set this value to limit the number of results returned.
-
#next_token ⇒ String
Provides an identifier to allow retrieval of paginated results.
-
#reserved_instance_id ⇒ String
The reserved instance identifier filter value.
Instance Attribute Details
#max_results ⇒ Integer
Set this value to limit the number of results returned. If not specified, defaults to 100.
2161 2162 2163 2164 2165 2166 2167 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2161 class DescribeReservedInstancesRequest < Struct.new( :reserved_instance_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Provides an identifier to allow retrieval of paginated results.
2161 2162 2163 2164 2165 2166 2167 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2161 class DescribeReservedInstancesRequest < Struct.new( :reserved_instance_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#reserved_instance_id ⇒ String
The reserved instance identifier filter value. Use this parameter to show only the reservation that matches the specified reserved OpenSearch instance ID.
2161 2162 2163 2164 2165 2166 2167 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2161 class DescribeReservedInstancesRequest < Struct.new( :reserved_instance_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |