interface HttpConnectorTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.HttpConnectorTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_HttpConnectorTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.HttpConnectorTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.HttpConnectorTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » HttpConnectorTargetConfigurationProperty |
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 httpConnectorTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.HttpConnectorTargetConfigurationProperty = {
source: {
connectorId: 'connectorId',
},
// the properties below are optional
parameters: {
parametersKey: 'parameters',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Http | |
| parameters? | IResolvable | { [string]: string } |
source
Type:
IResolvable | Http
parameters?
Type:
IResolvable | { [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript