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 classA builder forCfnGatewayTarget.SchemaDefinitionPropertystatic final classAn implementation forCfnGatewayTarget.SchemaDefinitionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe workload identity details for the gateway.default ObjectgetItems()Returns union: eitherIResolvableorCfnGatewayTarget.SchemaDefinitionPropertydefault ObjectThe schema definition properties for the gateway target.The schema definition.getType()The scheme definition type for the gateway target.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
Returns union: eitherIResolvableorCfnGatewayTarget.SchemaDefinitionProperty- See Also:
-
getProperties
The schema definition properties for the gateway target.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnGatewayTarget.SchemaDefinitionProperty>- See Also:
-
getRequired
The schema definition.- See Also:
-
builder
-