Class CfnDeployment
- All Implemented Interfaces:
IConstruct
,IDependable
,IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
AWS::GreengrassV2::Deployment
.
Creates a continuous deployment for a target, which is a AWS IoT Greengrass core device or group of core devices. When you add a new core device to a group of core devices that has a deployment, AWS IoT Greengrass deploys that group's deployment to the new device.
You can define one deployment for each target. When you create a new deployment for a target that has an existing deployment, you replace the previous deployment. AWS IoT Greengrass applies the new deployment to the target devices.
You can only add, update, or delete up to 10 deployments at a time to a single target.
Every deployment has a revision number that indicates how many deployment revisions you define for a target. Use this operation to create a new revision of an existing deployment. This operation returns the revision number of the new deployment when you create it.
For more information, see the Create deployments in the AWS IoT Greengrass V2 Developer Guide .
Deployment resources are deleted when you delete stacks. To keep the deployments in a stack, you must specify
"DeletionPolicy": "Retain"
on each deployment resource in the stack template that you want to keep. For more information, see DeletionPolicy .You can only delete up to 10 deployment resources at a time. If you delete more than 10 resources, you receive an error.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.greengrassv2.*; Object rateIncreaseCriteria; CfnDeployment cfnDeployment = CfnDeployment.Builder.create(this, "MyCfnDeployment") .targetArn("targetArn") // the properties below are optional .components(Map.of( "componentsKey", ComponentDeploymentSpecificationProperty.builder() .componentVersion("componentVersion") .configurationUpdate(ComponentConfigurationUpdateProperty.builder() .merge("merge") .reset(List.of("reset")) .build()) .runWith(ComponentRunWithProperty.builder() .posixUser("posixUser") .systemResourceLimits(SystemResourceLimitsProperty.builder() .cpus(123) .memory(123) .build()) .windowsUser("windowsUser") .build()) .build())) .deploymentName("deploymentName") .deploymentPolicies(DeploymentPoliciesProperty.builder() .componentUpdatePolicy(DeploymentComponentUpdatePolicyProperty.builder() .action("action") .timeoutInSeconds(123) .build()) .configurationValidationPolicy(DeploymentConfigurationValidationPolicyProperty.builder() .timeoutInSeconds(123) .build()) .failureHandlingPolicy("failureHandlingPolicy") .build()) .iotJobConfiguration(DeploymentIoTJobConfigurationProperty.builder() .abortConfig(IoTJobAbortConfigProperty.builder() .criteriaList(List.of(IoTJobAbortCriteriaProperty.builder() .action("action") .failureType("failureType") .minNumberOfExecutedThings(123) .thresholdPercentage(123) .build())) .build()) .jobExecutionsRolloutConfig(IoTJobExecutionsRolloutConfigProperty.builder() .exponentialRate(IoTJobExponentialRolloutRateProperty.builder() .baseRatePerMinute(123) .incrementFactor(123) .rateIncreaseCriteria(rateIncreaseCriteria) .build()) .maximumPerMinute(123) .build()) .timeoutConfig(IoTJobTimeoutConfigProperty.builder() .inProgressTimeoutInMinutes(123) .build()) .build()) .parentTargetArn("parentTargetArn") .tags(Map.of( "tagsKey", "tags")) .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnDeployment
.static interface
Contains information about a deployment's update to a component's configuration on AWS IoT Greengrass core devices.static interface
Contains information about a component to deploy.static interface
Contains information system user and group that the AWS IoT Greengrass Core software uses to run component processes on the core device.static interface
Contains information about a deployment's policy that defines when components are safe to update.static interface
Contains information about how long a component on a core device can validate its configuration updates before it times out.static interface
Contains information about an AWS IoT job configuration.static interface
Contains information about policies that define how a deployment updates components and handles failure.static interface
Contains a list of criteria that define when and how to cancel a configuration deployment.static interface
Contains criteria that define when and how to cancel a job.static interface
Contains information about the rollout configuration for a job.static interface
Contains information about an exponential rollout rate for a configuration deployment job.static interface
Contains information about the timeout configuration for a job.static interface
Contains information about system resource limits that the software applies to a component's processes.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCfnDeployment
(Construct scope, String id, CfnDeploymentProps props) Create a newAWS::GreengrassV2::Deployment
.protected
CfnDeployment
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnDeployment
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe ID of the deployment.The components to deploy.The name of the deployment.The deployment policies for the deployment.The job configuration for the deployment configuration.The parent deployment's ARN for a subdeployment.getTags()
Application-specific metadata to attach to the deployment.The ARN of the target AWS IoT thing or thing group.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setComponents
(Map<String, Object> value) The components to deploy.void
setComponents
(IResolvable value) The components to deploy.void
setDeploymentName
(String value) The name of the deployment.void
setDeploymentPolicies
(IResolvable value) The deployment policies for the deployment.void
The deployment policies for the deployment.void
The job configuration for the deployment configuration.void
The job configuration for the deployment configuration.void
setParentTargetArn
(String value) The parent deployment's ARN for a subdeployment.void
setTargetArn
(String value) The ARN of the target AWS IoT thing or thing group.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnDeployment
protected CfnDeployment(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDeployment
protected CfnDeployment(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDeployment
@Stability(Stable) public CfnDeployment(@NotNull Construct scope, @NotNull String id, @NotNull CfnDeploymentProps props) Create a newAWS::GreengrassV2::Deployment
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
props
-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrDeploymentId
The ID of the deployment. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Application-specific metadata to attach to the deployment.You can use tags in IAM policies to control access to AWS IoT Greengrass resources. You can also use tags to categorize your resources. For more information, see Tag your AWS IoT Greengrass Version 2 resources in the AWS IoT Greengrass V2 Developer Guide .
This
Json
property type is processed as a map of key-value pairs. It uses the following format, which is different from mostTags
implementations in AWS CloudFormation templates."Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value" }
-
getTargetArn
The ARN of the target AWS IoT thing or thing group. -
setTargetArn
The ARN of the target AWS IoT thing or thing group. -
getComponents
The components to deploy.This is a dictionary, where each key is the name of a component, and each key's value is the version and configuration to deploy for that component.
-
setComponents
The components to deploy.This is a dictionary, where each key is the name of a component, and each key's value is the version and configuration to deploy for that component.
-
setComponents
The components to deploy.This is a dictionary, where each key is the name of a component, and each key's value is the version and configuration to deploy for that component.
-
getDeploymentName
The name of the deployment. -
setDeploymentName
The name of the deployment. -
getDeploymentPolicies
The deployment policies for the deployment.These policies define how the deployment updates components and handles failure.
-
setDeploymentPolicies
The deployment policies for the deployment.These policies define how the deployment updates components and handles failure.
-
setDeploymentPolicies
@Stability(Stable) public void setDeploymentPolicies(@Nullable CfnDeployment.DeploymentPoliciesProperty value) The deployment policies for the deployment.These policies define how the deployment updates components and handles failure.
-
getIotJobConfiguration
The job configuration for the deployment configuration.The job configuration specifies the rollout, timeout, and stop configurations for the deployment configuration.
-
setIotJobConfiguration
The job configuration for the deployment configuration.The job configuration specifies the rollout, timeout, and stop configurations for the deployment configuration.
-
setIotJobConfiguration
@Stability(Stable) public void setIotJobConfiguration(@Nullable CfnDeployment.DeploymentIoTJobConfigurationProperty value) The job configuration for the deployment configuration.The job configuration specifies the rollout, timeout, and stop configurations for the deployment configuration.
-
getParentTargetArn
The parent deployment's ARN for a subdeployment. -
setParentTargetArn
The parent deployment's ARN for a subdeployment.
-