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

.NET
Go
Java
Python
TypeScript