amazonka-greengrassv2-2.0: Amazon IoT Greengrass V2 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.GreengrassV2.Types.Deployment

Description

 
Synopsis

Documentation

data Deployment Source #

Contains information about a deployment.

See: newDeployment smart constructor.

Constructors

Deployment' 

Fields

Instances

Instances details
FromJSON Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

Generic Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

Associated Types

type Rep Deployment :: Type -> Type #

Read Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

Show Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

NFData Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

Methods

rnf :: Deployment -> () #

Eq Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

Hashable Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

type Rep Deployment Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.Deployment

type Rep Deployment = D1 ('MetaData "Deployment" "Amazonka.GreengrassV2.Types.Deployment" "amazonka-greengrassv2-2.0-CXiJQl197i43YI1Cz5IpiZ" 'False) (C1 ('MetaCons "Deployment'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "deploymentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "deploymentStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentStatus)))) :*: ((S1 ('MetaSel ('Just "isLatestForTarget") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "parentTargetArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "revisionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "targetArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newDeployment :: Deployment Source #

Create a value of Deployment 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:creationTimestamp:Deployment', deployment_creationTimestamp - The time at which the deployment was created, expressed in ISO 8601 format.

$sel:deploymentId:Deployment', deployment_deploymentId - The ID of the deployment.

$sel:deploymentName:Deployment', deployment_deploymentName - The name of the deployment.

$sel:deploymentStatus:Deployment', deployment_deploymentStatus - The status of the deployment.

$sel:isLatestForTarget:Deployment', deployment_isLatestForTarget - Whether or not the deployment is the latest revision for its target.

$sel:parentTargetArn:Deployment', deployment_parentTargetArn - The parent deployment's target ARN within a subdeployment.

$sel:revisionId:Deployment', deployment_revisionId - The revision number of the deployment.

$sel:targetArn:Deployment', deployment_targetArn - The ARN of the target IoT thing or thing group. When creating a subdeployment, the targetARN can only be a thing group.

deployment_creationTimestamp :: Lens' Deployment (Maybe UTCTime) Source #

The time at which the deployment was created, expressed in ISO 8601 format.

deployment_deploymentId :: Lens' Deployment (Maybe Text) Source #

The ID of the deployment.

deployment_deploymentName :: Lens' Deployment (Maybe Text) Source #

The name of the deployment.

deployment_isLatestForTarget :: Lens' Deployment (Maybe Bool) Source #

Whether or not the deployment is the latest revision for its target.

deployment_parentTargetArn :: Lens' Deployment (Maybe Text) Source #

The parent deployment's target ARN within a subdeployment.

deployment_revisionId :: Lens' Deployment (Maybe Text) Source #

The revision number of the deployment.

deployment_targetArn :: Lens' Deployment (Maybe Text) Source #

The ARN of the target IoT thing or thing group. When creating a subdeployment, the targetARN can only be a thing group.