libZSservicesZSamazonka-eksZSamazonka-eks
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.EKS.DescribeAddonVersions

Description

Describes the Kubernetes versions that the add-on can be used with.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeAddonVersions Source #

See: newDescribeAddonVersions smart constructor.

Constructors

DescribeAddonVersions' 

Fields

  • addonName :: Maybe Text

    The name of the add-on. The name must match one of the names returned by ListAddons .

  • nextToken :: Maybe Text

    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.

    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.

  • kubernetesVersion :: Maybe Text

    The Kubernetes versions that the add-on can be used with.

  • maxResults :: Maybe Natural

    The maximum number of results to return.

Instances

Instances details
Eq DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Read DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Show DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Generic DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Associated Types

type Rep DescribeAddonVersions :: Type -> Type #

NFData DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Methods

rnf :: DescribeAddonVersions -> () #

Hashable DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

AWSPager DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

AWSRequest DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Associated Types

type AWSResponse DescribeAddonVersions #

ToHeaders DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

ToPath DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

ToQuery DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

type Rep DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

type Rep DescribeAddonVersions = D1 ('MetaData "DescribeAddonVersions" "Amazonka.EKS.DescribeAddonVersions" "libZSservicesZSamazonka-eksZSamazonka-eks" 'False) (C1 ('MetaCons "DescribeAddonVersions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "addonName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "kubernetesVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse DescribeAddonVersions Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

newDescribeAddonVersions :: DescribeAddonVersions Source #

Create a value of DescribeAddonVersions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:addonName:DescribeAddonVersions', describeAddonVersions_addonName - The name of the add-on. The name must match one of the names returned by ListAddons .

$sel:nextToken:DescribeAddonVersions', describeAddonVersions_nextToken - 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.

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.

$sel:kubernetesVersion:DescribeAddonVersions', describeAddonVersions_kubernetesVersion - The Kubernetes versions that the add-on can be used with.

$sel:maxResults:DescribeAddonVersions', describeAddonVersions_maxResults - The maximum number of results to return.

Request Lenses

describeAddonVersions_addonName :: Lens' DescribeAddonVersions (Maybe Text) Source #

The name of the add-on. The name must match one of the names returned by ListAddons .

describeAddonVersions_nextToken :: Lens' DescribeAddonVersions (Maybe Text) Source #

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.

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.

describeAddonVersions_kubernetesVersion :: Lens' DescribeAddonVersions (Maybe Text) Source #

The Kubernetes versions that the add-on can be used with.

Destructuring the Response

data DescribeAddonVersionsResponse Source #

See: newDescribeAddonVersionsResponse smart constructor.

Constructors

DescribeAddonVersionsResponse' 

Fields

  • addons :: Maybe [AddonInfo]

    The list of available versions with Kubernetes version compatibility.

  • nextToken :: Maybe Text

    The nextToken value returned from a previous paginated DescribeAddonVersionsResponse 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.

    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.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq DescribeAddonVersionsResponse Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Read DescribeAddonVersionsResponse Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Show DescribeAddonVersionsResponse Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Generic DescribeAddonVersionsResponse Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

Associated Types

type Rep DescribeAddonVersionsResponse :: Type -> Type #

NFData DescribeAddonVersionsResponse Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

type Rep DescribeAddonVersionsResponse Source # 
Instance details

Defined in Amazonka.EKS.DescribeAddonVersions

type Rep DescribeAddonVersionsResponse = D1 ('MetaData "DescribeAddonVersionsResponse" "Amazonka.EKS.DescribeAddonVersions" "libZSservicesZSamazonka-eksZSamazonka-eks" 'False) (C1 ('MetaCons "DescribeAddonVersionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "addons") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [AddonInfo])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeAddonVersionsResponse Source #

Create a value of DescribeAddonVersionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:addons:DescribeAddonVersionsResponse', describeAddonVersionsResponse_addons - The list of available versions with Kubernetes version compatibility.

$sel:nextToken:DescribeAddonVersions', describeAddonVersionsResponse_nextToken - The nextToken value returned from a previous paginated DescribeAddonVersionsResponse 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.

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.

$sel:httpStatus:DescribeAddonVersionsResponse', describeAddonVersionsResponse_httpStatus - The response's http status code.

Response Lenses

describeAddonVersionsResponse_addons :: Lens' DescribeAddonVersionsResponse (Maybe [AddonInfo]) Source #

The list of available versions with Kubernetes version compatibility.

describeAddonVersionsResponse_nextToken :: Lens' DescribeAddonVersionsResponse (Maybe Text) Source #

The nextToken value returned from a previous paginated DescribeAddonVersionsResponse 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.

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.