Interface CfnDeployment.DeploymentConfigurationValidationPolicyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeployment.DeploymentConfigurationValidationPolicyProperty.Jsii$Proxy
- Enclosing class:
- CfnDeployment
@Stability(Stable)
public static interface CfnDeployment.DeploymentConfigurationValidationPolicyProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.greengrassv2.*;
DeploymentConfigurationValidationPolicyProperty deploymentConfigurationValidationPolicyProperty = DeploymentConfigurationValidationPolicyProperty.builder()
.timeoutInSeconds(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeployment.DeploymentConfigurationValidationPolicyProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTimeoutInSeconds
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 -
builder
@Stability(Stable) static CfnDeployment.DeploymentConfigurationValidationPolicyProperty.Builder builder()
-