interface DeploymentConfigurationValidationPolicyProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.GreengrassV2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsgreengrassv2#CfnDeployment_DeploymentConfigurationValidationPolicyProperty |
![]() | software.amazon.awscdk.services.greengrassv2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty |
![]() | aws_cdk.aws_greengrassv2.CfnDeployment.DeploymentConfigurationValidationPolicyProperty |
![]() | 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
Name | Type | Description |
---|---|---|
timeout | number | The 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