Interface CfnGatewayTarget.SchemaDefinitionProperty

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

@Stability(Stable) public static interface CfnGatewayTarget.SchemaDefinitionProperty extends software.amazon.jsii.JsiiSerializable
The schema definition for the gateway target.

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.bedrockagentcore.*;
 SchemaDefinitionProperty schemaDefinitionProperty_;
 SchemaDefinitionProperty schemaDefinitionProperty = SchemaDefinitionProperty.builder()
         .type("type")
         // the properties below are optional
         .description("description")
         .items(schemaDefinitionProperty_)
         .properties(Map.of(
                 "propertiesKey", schemaDefinitionProperty_))
         .required(List.of("required"))
         .build();
 

See Also: