interface ConnectorTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.ConnectorTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_ConnectorTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.ConnectorTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.ConnectorTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » ConnectorTargetConfigurationProperty |
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';
declare const parameterValues: any;
const connectorTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.ConnectorTargetConfigurationProperty = {
source: {
connectorId: 'connectorId',
},
// the properties below are optional
configurations: [{
name: 'name',
// the properties below are optional
description: 'description',
parameterOverrides: [{
path: 'path',
// the properties below are optional
description: 'description',
visible: false,
}],
parameterValues: parameterValues,
}],
enabled: ['enabled'],
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Connector | |
| configurations? | IResolvable | (IResolvable | Connector)[] | |
| enabled? | string[] |
source
Type:
IResolvable | Connector
configurations?
Type:
IResolvable | (IResolvable | Connector)[]
(optional)
enabled?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript