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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGatewayTarget.SchemaDefinitionProperty
static final class
An implementation forCfnGatewayTarget.SchemaDefinitionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The scheme definition type for the gateway target.- See Also:
-
getDescription
The workload identity details for the gateway.- See Also:
-
getItems
- See Also:
-
getProperties
The schema definition properties for the gateway target.- See Also:
-
getRequired
The schema definition.- See Also:
-
builder
-