Class: Aws::ElasticsearchService::Types::ListDomainsForPackageRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

Note:

When making an API call, you may pass ListDomainsForPackageRequest data as a hash:

{
  package_id: "PackageID", # required
  max_results: 1,
  next_token: "NextToken",
}

Container for request parameters to ‘ ListDomainsForPackage ` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

Limits results to a maximum number of domains.

Returns:

  • (Integer)


2389
2390
2391
2392
2393
2394
2395
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2389

class ListDomainsForPackageRequest < Struct.new(
  :package_id,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.

Returns:

  • (String)


2389
2390
2391
2392
2393
2394
2395
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2389

class ListDomainsForPackageRequest < Struct.new(
  :package_id,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#package_idString

The package for which to list domains.

Returns:

  • (String)


2389
2390
2391
2392
2393
2394
2395
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2389

class ListDomainsForPackageRequest < Struct.new(
  :package_id,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end