Interface CfnConfigurationProfile.ValidatorsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationProfile.ValidatorsProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationProfile

@Stability(Stable) public static interface CfnConfigurationProfile.ValidatorsProperty extends software.amazon.jsii.JsiiSerializable
A validator provides a syntactic or semantic check to ensure the configuration that you want to deploy functions as intended.

To validate your application configuration data, you provide a schema or an AWS Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid. For more information, see About validators in the AWS AppConfig User 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.appconfig.*;
 ValidatorsProperty validatorsProperty = ValidatorsProperty.builder()
         .content("content")
         .type("type")
         .build();
 

See Also: