Class: Aws::EKS::Types::DescribeAddonVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::DescribeAddonVersionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
When making an API call, you may pass DescribeAddonVersionsRequest data as a hash:
{
kubernetes_version: "String",
max_results: 1,
next_token: "String",
addon_name: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#addon_name ⇒ String
The name of the add-on.
-
#kubernetes_version ⇒ String
The Kubernetes versions that the add-on can be used with.
-
#max_results ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
The `nextToken` value returned from a previous paginated `DescribeAddonVersionsRequest` where `maxResults` was used and the results exceeded the value of that parameter.
Instance Attribute Details
#addon_name ⇒ String
The name of the add-on. The name must match one of the names returned by [ `ListAddons` ][1].
[1]: docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
1332 1333 1334 1335 1336 1337 1338 1339 |
# File 'lib/aws-sdk-eks/types.rb', line 1332 class DescribeAddonVersionsRequest < Struct.new( :kubernetes_version, :max_results, :next_token, :addon_name) SENSITIVE = [] include Aws::Structure end |
#kubernetes_version ⇒ String
The Kubernetes versions that the add-on can be used with.
1332 1333 1334 1335 1336 1337 1338 1339 |
# File 'lib/aws-sdk-eks/types.rb', line 1332 class DescribeAddonVersionsRequest < Struct.new( :kubernetes_version, :max_results, :next_token, :addon_name) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return.
1332 1333 1334 1335 1336 1337 1338 1339 |
# File 'lib/aws-sdk-eks/types.rb', line 1332 class DescribeAddonVersionsRequest < Struct.new( :kubernetes_version, :max_results, :next_token, :addon_name) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The `nextToken` value returned from a previous paginated `DescribeAddonVersionsRequest` where `maxResults` was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the `nextToken` value.
<note markdown=“1”> This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
</note>
1332 1333 1334 1335 1336 1337 1338 1339 |
# File 'lib/aws-sdk-eks/types.rb', line 1332 class DescribeAddonVersionsRequest < Struct.new( :kubernetes_version, :max_results, :next_token, :addon_name) SENSITIVE = [] include Aws::Structure end |