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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfigurationProfile.ValidatorsProperty
static final class
An implementation forCfnConfigurationProfile.ValidatorsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContent
Either the JSON Schema content or the Amazon Resource Name (ARN) of an Lambda function.- See Also:
-
getType
AWS AppConfig supports validators of typeJSON_SCHEMA
andLAMBDA
.- See Also:
-
builder
-