Class: Aws::ElasticsearchService::Types::ListPackagesForDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::ListPackagesForDomainRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Container for request parameters to ‘ ListPackagesForDomain ` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of the domain for which you want to list associated packages.
-
#max_results ⇒ Integer
Limits results to a maximum number of packages.
-
#next_token ⇒ String
Used for pagination.
Instance Attribute Details
#domain_name ⇒ String
The name of the domain for which you want to list associated packages.
3036 3037 3038 3039 3040 3041 3042 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3036 class ListPackagesForDomainRequest < Struct.new( :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Limits results to a maximum number of packages.
3036 3037 3038 3039 3040 3041 3042 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3036 class ListPackagesForDomainRequest < Struct.new( :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
3036 3037 3038 3039 3040 3041 3042 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3036 class ListPackagesForDomainRequest < Struct.new( :domain_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |