interface HttpTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.HttpTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_HttpTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.HttpTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.HttpTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » HttpTargetConfigurationProperty |
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 httpTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.HttpTargetConfigurationProperty = {
agentcoreRuntime: {
arn: 'arn',
// the properties below are optional
qualifier: 'qualifier',
schema: {
source: {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
},
},
passthrough: {
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 |
|---|---|---|
| agentcore | IResolvable | Runtime | |
| passthrough? | IResolvable | Passthrough |
agentcoreRuntime?
Type:
IResolvable | Runtime
(optional)
passthrough?
Type:
IResolvable | Passthrough
(optional)

.NET
Go
Java
Python
TypeScript