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

.NET
Go
Java
Python
TypeScript