interface HttpTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayTargetPropsMixin.HttpTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayTargetPropsMixin_HttpTargetConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayTargetPropsMixin.HttpTargetConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayTargetPropsMixin.HttpTargetConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayTargetPropsMixin » 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/cfn-property-mixins';
const httpTargetConfigurationProperty: bedrockagentcore.CfnGatewayTargetPropsMixin.HttpTargetConfigurationProperty = {
agentcoreRuntime: {
arn: 'arn',
qualifier: 'qualifier',
schema: {
source: {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
},
},
passthrough: {
endpoint: 'endpoint',
protocolType: 'protocolType',
schema: {
source: {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
},
stickinessConfiguration: {
identifier: 'identifier',
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