interface ApiSchemaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayTargetPropsMixin.ApiSchemaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayTargetPropsMixin_ApiSchemaConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayTargetPropsMixin.ApiSchemaConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayTargetPropsMixin.ApiSchemaConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayTargetPropsMixin » ApiSchemaConfigurationProperty |
The API schema configuration 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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const apiSchemaConfigurationProperty: bedrockagentcore.CfnGatewayTargetPropsMixin.ApiSchemaConfigurationProperty = {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| inline | string | The inline payload for the gateway. |
| s3? | IResolvable | S3 | The API schema configuration. |
inlinePayload?
Type:
string
(optional)
The inline payload for the gateway.
s3?
Type:
IResolvable | S3
(optional)
The API schema configuration.

.NET
Go
Java
Python
TypeScript