interface SchemaDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnGatewayTargetPropsMixin.SchemaDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnGatewayTargetPropsMixin_SchemaDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.SchemaDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.SchemaDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnGatewayTargetPropsMixin » SchemaDefinitionProperty |
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 { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
declare const schemaDefinitionProperty_: bedrockagentcore_mixins.CfnGatewayTargetPropsMixin.SchemaDefinitionProperty;
const schemaDefinitionProperty: bedrockagentcore_mixins.CfnGatewayTargetPropsMixin.SchemaDefinitionProperty = {
description: 'description',
items: schemaDefinitionProperty_,
properties: {
propertiesKey: schemaDefinitionProperty_,
},
required: ['required'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The workload identity details for the gateway. |
| items? | IResolvable | Schema | |
| properties? | IResolvable | { [string]: IResolvable | Schema } | The schema definition properties for the gateway target. |
| required? | string[] | The schema definition. |
| type? | string | The scheme definition type for the gateway target. |
description?
Type:
string
(optional)
The workload identity details for the gateway.
items?
Type:
IResolvable | Schema
(optional)
properties?
Type:
IResolvable | { [string]: IResolvable | Schema }
(optional)
The schema definition properties for the gateway target.
required?
Type:
string[]
(optional)
The schema definition.
type?
Type:
string
(optional)
The scheme definition type for the gateway target.

.NET
Go
Java
Python
TypeScript