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

Description

 
Synopsis

Documentation

data LastDeploymentInfo Source #

Information about the most recent attempted or successful deployment to a deployment group.

See: newLastDeploymentInfo smart constructor.

Constructors

LastDeploymentInfo' 

Fields

Instances

Instances details
FromJSON LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

Generic LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

Associated Types

type Rep LastDeploymentInfo :: Type -> Type #

Read LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

Show LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

NFData LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

Methods

rnf :: LastDeploymentInfo -> () #

Eq LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

Hashable LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

type Rep LastDeploymentInfo Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.LastDeploymentInfo

type Rep LastDeploymentInfo = D1 ('MetaData "LastDeploymentInfo" "Amazonka.CodeDeploy.Types.LastDeploymentInfo" "amazonka-codedeploy-2.0-4OehMEUeOr9G9ZXD2VmvAo" 'False) (C1 ('MetaCons "LastDeploymentInfo'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "createTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "endTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentStatus)))))

newLastDeploymentInfo :: LastDeploymentInfo Source #

Create a value of LastDeploymentInfo 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:createTime:LastDeploymentInfo', lastDeploymentInfo_createTime - A timestamp that indicates when the most recent deployment to the deployment group started.

$sel:deploymentId:LastDeploymentInfo', lastDeploymentInfo_deploymentId - The unique ID of a deployment.

$sel:endTime:LastDeploymentInfo', lastDeploymentInfo_endTime - A timestamp that indicates when the most recent deployment to the deployment group was complete.

$sel:status:LastDeploymentInfo', lastDeploymentInfo_status - The status of the most recent deployment.

lastDeploymentInfo_createTime :: Lens' LastDeploymentInfo (Maybe UTCTime) Source #

A timestamp that indicates when the most recent deployment to the deployment group started.

lastDeploymentInfo_endTime :: Lens' LastDeploymentInfo (Maybe UTCTime) Source #

A timestamp that indicates when the most recent deployment to the deployment group was complete.

lastDeploymentInfo_status :: Lens' LastDeploymentInfo (Maybe DeploymentStatus) Source #

The status of the most recent deployment.