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

.NET
Go
Java
Python
TypeScript