Class: Aws::OpenSearchService::Types::DescribeReservedInstanceOfferingsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DescribeReservedInstanceOfferingsRequest
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
Container for the request parameters to a
DescribeReservedInstanceOfferings operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
An optional parameter that specifies the maximum number of results to return.
-
#next_token ⇒ String
If your initial
DescribeReservedInstanceOfferingsoperation returns anextToken, you can include the returnednextTokenin subsequentDescribeReservedInstanceOfferingsoperations, which returns results in the next page. -
#reserved_instance_offering_id ⇒ String
The Reserved Instance identifier filter value.
Instance Attribute Details
#max_results ⇒ Integer
An optional parameter that specifies the maximum number of results
to return. You can use nextToken to get the next page of results.
3035 3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3035 class DescribeReservedInstanceOfferingsRequest < Struct.new( :reserved_instance_offering_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If your initial DescribeReservedInstanceOfferings operation
returns a nextToken, you can include the returned nextToken in
subsequent DescribeReservedInstanceOfferings operations, which
returns results in the next page.
3035 3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3035 class DescribeReservedInstanceOfferingsRequest < Struct.new( :reserved_instance_offering_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#reserved_instance_offering_id ⇒ String
The Reserved Instance identifier filter value. Use this parameter to show only the available instance types that match the specified reservation identifier.
3035 3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3035 class DescribeReservedInstanceOfferingsRequest < Struct.new( :reserved_instance_offering_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |