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.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationProfile.ValidatorsPropertystatic final classAn 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. -
getType
AWS AppConfig supports validators of typeJSON_SCHEMAandLAMBDA. -
builder
-