amazonka-codedeploy-2.0: Amazon CodeDeploy SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CodeDeploy.Types.ApplicationInfo

Description

 
Synopsis

Documentation

data ApplicationInfo Source #

Information about an application.

See: newApplicationInfo smart constructor.

Constructors

ApplicationInfo' 

Fields

Instances

Instances details
FromJSON ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

Generic ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

Associated Types

type Rep ApplicationInfo :: Type -> Type #

Read ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

Show ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

NFData ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

Methods

rnf :: ApplicationInfo -> () #

Eq ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

Hashable ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

type Rep ApplicationInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.ApplicationInfo

type Rep ApplicationInfo = D1 ('MetaData "ApplicationInfo" "Amazonka.CodeDeploy.Types.ApplicationInfo" "amazonka-codedeploy-2.0-4OehMEUeOr9G9ZXD2VmvAo" 'False) (C1 ('MetaCons "ApplicationInfo'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "applicationName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "computePlatform") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ComputePlatform)))) :*: (S1 ('MetaSel ('Just "createTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "gitHubAccountName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "linkedToGitHub") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))))))

newApplicationInfo :: ApplicationInfo Source #

Create a value of ApplicationInfo 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:applicationId:ApplicationInfo', applicationInfo_applicationId - The application ID.

$sel:applicationName:ApplicationInfo', applicationInfo_applicationName - The application name.

$sel:computePlatform:ApplicationInfo', applicationInfo_computePlatform - The destination platform type for deployment of the application (Lambda or Server).

$sel:createTime:ApplicationInfo', applicationInfo_createTime - The time at which the application was created.

$sel:gitHubAccountName:ApplicationInfo', applicationInfo_gitHubAccountName - The name for a connection to a GitHub account.

$sel:linkedToGitHub:ApplicationInfo', applicationInfo_linkedToGitHub - True if the user has authenticated with GitHub for the specified application. Otherwise, false.

applicationInfo_computePlatform :: Lens' ApplicationInfo (Maybe ComputePlatform) Source #

The destination platform type for deployment of the application (Lambda or Server).

applicationInfo_createTime :: Lens' ApplicationInfo (Maybe UTCTime) Source #

The time at which the application was created.

applicationInfo_gitHubAccountName :: Lens' ApplicationInfo (Maybe Text) Source #

The name for a connection to a GitHub account.

applicationInfo_linkedToGitHub :: Lens' ApplicationInfo (Maybe Bool) Source #

True if the user has authenticated with GitHub for the specified application. Otherwise, false.