libZSservicesZSamazonka-codedeployZSamazonka-codedeploy
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.CodeDeploy.ListGitHubAccountTokenNames

Description

Lists the names of stored connections to GitHub accounts.

This operation returns paginated results.

Synopsis

Creating a Request

data ListGitHubAccountTokenNames Source #

Represents the input of a ListGitHubAccountTokenNames operation.

See: newListGitHubAccountTokenNames smart constructor.

Constructors

ListGitHubAccountTokenNames' 

Fields

  • nextToken :: Maybe Text

    An identifier returned from the previous ListGitHubAccountTokenNames call. It can be used to return the next set of names in the list.

Instances

Instances details
Eq ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Read ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Show ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Generic ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Associated Types

type Rep ListGitHubAccountTokenNames :: Type -> Type #

NFData ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Hashable ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

ToJSON ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

AWSPager ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

AWSRequest ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

ToHeaders ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

ToPath ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

ToQuery ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

type Rep ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

type Rep ListGitHubAccountTokenNames = D1 ('MetaData "ListGitHubAccountTokenNames" "Amazonka.CodeDeploy.ListGitHubAccountTokenNames" "libZSservicesZSamazonka-codedeployZSamazonka-codedeploy" 'False) (C1 ('MetaCons "ListGitHubAccountTokenNames'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))
type AWSResponse ListGitHubAccountTokenNames Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

newListGitHubAccountTokenNames :: ListGitHubAccountTokenNames Source #

Create a value of ListGitHubAccountTokenNames 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:ListGitHubAccountTokenNames', listGitHubAccountTokenNames_nextToken - An identifier returned from the previous ListGitHubAccountTokenNames call. It can be used to return the next set of names in the list.

Request Lenses

listGitHubAccountTokenNames_nextToken :: Lens' ListGitHubAccountTokenNames (Maybe Text) Source #

An identifier returned from the previous ListGitHubAccountTokenNames call. It can be used to return the next set of names in the list.

Destructuring the Response

data ListGitHubAccountTokenNamesResponse Source #

Represents the output of a ListGitHubAccountTokenNames operation.

See: newListGitHubAccountTokenNamesResponse smart constructor.

Constructors

ListGitHubAccountTokenNamesResponse' 

Fields

  • tokenNameList :: Maybe [Text]

    A list of names of connections to GitHub accounts.

  • nextToken :: Maybe Text

    If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent ListGitHubAccountTokenNames call to return the next set of names in the list.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq ListGitHubAccountTokenNamesResponse Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Read ListGitHubAccountTokenNamesResponse Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Show ListGitHubAccountTokenNamesResponse Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

Generic ListGitHubAccountTokenNamesResponse Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

NFData ListGitHubAccountTokenNamesResponse Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

type Rep ListGitHubAccountTokenNamesResponse Source # 
Instance details

Defined in Amazonka.CodeDeploy.ListGitHubAccountTokenNames

type Rep ListGitHubAccountTokenNamesResponse = D1 ('MetaData "ListGitHubAccountTokenNamesResponse" "Amazonka.CodeDeploy.ListGitHubAccountTokenNames" "libZSservicesZSamazonka-codedeployZSamazonka-codedeploy" 'False) (C1 ('MetaCons "ListGitHubAccountTokenNamesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tokenNameList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListGitHubAccountTokenNamesResponse Source #

Create a value of ListGitHubAccountTokenNamesResponse 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:tokenNameList:ListGitHubAccountTokenNamesResponse', listGitHubAccountTokenNamesResponse_tokenNameList - A list of names of connections to GitHub accounts.

$sel:nextToken:ListGitHubAccountTokenNames', listGitHubAccountTokenNamesResponse_nextToken - If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent ListGitHubAccountTokenNames call to return the next set of names in the list.

$sel:httpStatus:ListGitHubAccountTokenNamesResponse', listGitHubAccountTokenNamesResponse_httpStatus - The response's http status code.

Response Lenses

listGitHubAccountTokenNamesResponse_nextToken :: Lens' ListGitHubAccountTokenNamesResponse (Maybe Text) Source #

If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent ListGitHubAccountTokenNames call to return the next set of names in the list.