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.ListIdentityProviderConfigs

Description

A list of identity provider configurations.

This operation returns paginated results.

Synopsis

Creating a Request

data ListIdentityProviderConfigs Source #

See: newListIdentityProviderConfigs smart constructor.

Constructors

ListIdentityProviderConfigs' 

Fields

  • nextToken :: Maybe Text

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

  • maxResults :: Maybe Natural

    The maximum number of identity provider configurations returned by ListIdentityProviderConfigs in paginated output. When you use this parameter, ListIdentityProviderConfigs returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListIdentityProviderConfigs request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListIdentityProviderConfigs returns up to 100 results and a nextToken value, if applicable.

  • clusterName :: Text

    The cluster name that you want to list identity provider configurations for.

Instances

Instances details
Eq ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Read ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Show ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Generic ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Associated Types

type Rep ListIdentityProviderConfigs :: Type -> Type #

NFData ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Hashable ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

AWSPager ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

AWSRequest ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

ToHeaders ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

ToPath ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

ToQuery ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

type Rep ListIdentityProviderConfigs Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

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

Defined in Amazonka.EKS.ListIdentityProviderConfigs

newListIdentityProviderConfigs Source #

Create a value of ListIdentityProviderConfigs 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:nextToken:ListIdentityProviderConfigs', listIdentityProviderConfigs_nextToken - The nextToken value returned from a previous paginated IdentityProviderConfigsRequest 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.

$sel:maxResults:ListIdentityProviderConfigs', listIdentityProviderConfigs_maxResults - The maximum number of identity provider configurations returned by ListIdentityProviderConfigs in paginated output. When you use this parameter, ListIdentityProviderConfigs returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListIdentityProviderConfigs request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListIdentityProviderConfigs returns up to 100 results and a nextToken value, if applicable.

$sel:clusterName:ListIdentityProviderConfigs', listIdentityProviderConfigs_clusterName - The cluster name that you want to list identity provider configurations for.

Request Lenses

listIdentityProviderConfigs_nextToken :: Lens' ListIdentityProviderConfigs (Maybe Text) Source #

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

listIdentityProviderConfigs_maxResults :: Lens' ListIdentityProviderConfigs (Maybe Natural) Source #

The maximum number of identity provider configurations returned by ListIdentityProviderConfigs in paginated output. When you use this parameter, ListIdentityProviderConfigs returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListIdentityProviderConfigs request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListIdentityProviderConfigs returns up to 100 results and a nextToken value, if applicable.

listIdentityProviderConfigs_clusterName :: Lens' ListIdentityProviderConfigs Text Source #

The cluster name that you want to list identity provider configurations for.

Destructuring the Response

data ListIdentityProviderConfigsResponse Source #

Constructors

ListIdentityProviderConfigsResponse' 

Fields

  • identityProviderConfigs :: Maybe [IdentityProviderConfig]

    The identity provider configurations for the cluster.

  • nextToken :: Maybe Text

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

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq ListIdentityProviderConfigsResponse Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Read ListIdentityProviderConfigsResponse Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Show ListIdentityProviderConfigsResponse Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

Generic ListIdentityProviderConfigsResponse Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

NFData ListIdentityProviderConfigsResponse Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

type Rep ListIdentityProviderConfigsResponse Source # 
Instance details

Defined in Amazonka.EKS.ListIdentityProviderConfigs

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

newListIdentityProviderConfigsResponse Source #

Create a value of ListIdentityProviderConfigsResponse 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:identityProviderConfigs:ListIdentityProviderConfigsResponse', listIdentityProviderConfigsResponse_identityProviderConfigs - The identity provider configurations for the cluster.

$sel:nextToken:ListIdentityProviderConfigs', listIdentityProviderConfigsResponse_nextToken - The nextToken value returned from a previous paginated ListIdentityProviderConfigsResponse 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.

$sel:httpStatus:ListIdentityProviderConfigsResponse', listIdentityProviderConfigsResponse_httpStatus - The response's http status code.

Response Lenses

listIdentityProviderConfigsResponse_nextToken :: Lens' ListIdentityProviderConfigsResponse (Maybe Text) Source #

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