aws-cdk-lib.aws_greengrassv2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty

interface DeploymentConfigurationValidationPolicyProperty

LanguageType name
.NETAmazon.CDK.AWS.GreengrassV2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgreengrassv2#CfnDeployment_DeploymentConfigurationValidationPolicyProperty
Javasoftware.amazon.awscdk.services.greengrassv2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty
Pythonaws_cdk.aws_greengrassv2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty
TypeScript aws-cdk-lib » aws_greengrassv2 » CfnDeployment » DeploymentConfigurationValidationPolicyProperty

Contains information about how long a component on a core device can validate its configuration updates before it times out.

Components can use the SubscribeToValidateConfigurationUpdates IPC operation to receive notifications when a deployment specifies a configuration update. Then, components can respond with the SendConfigurationValidityReport IPC operation. For more information, see the Create deployments in the AWS IoT Greengrass V2 Developer Guide .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrassv2 as greengrassv2 } from 'aws-cdk-lib';
const deploymentConfigurationValidationPolicyProperty: greengrassv2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty = {
  timeoutInSeconds: 123,
};

Properties

NameTypeDescription
timeoutInSeconds?numberThe amount of time in seconds that a component can validate its configuration updates.

timeoutInSeconds?

Type: number (optional)

The amount of time in seconds that a component can validate its configuration updates.

If the validation time exceeds this timeout, then the deployment proceeds for the device.

Default: 30