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

.NET
Go
Java
Python
TypeScript