interface PassthroughTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.PassthroughTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_PassthroughTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.PassthroughTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.PassthroughTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » PassthroughTargetConfigurationProperty |
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-lib';
const passthroughTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.PassthroughTargetConfigurationProperty = {
endpoint: 'endpoint',
protocolType: 'protocolType',
// the properties below are optional
schema: {
source: {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
},
stickinessConfiguration: {
identifier: 'identifier',
// the properties below are optional
timeout: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | |
| protocol | string | |
| schema? | IResolvable | Http | |
| stickiness | IResolvable | Stickiness |
endpoint
Type:
string
protocolType
Type:
string
schema?
Type:
IResolvable | Http
(optional)
stickinessConfiguration?
Type:
IResolvable | Stickiness
(optional)

.NET
Go
Java
Python
TypeScript