interface GatewayTargetCommonProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.GatewayTargetCommonProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#GatewayTargetCommonProps |
Java | software.amazon.awscdk.services.bedrockagentcore.GatewayTargetCommonProps |
Python | aws_cdk.aws_bedrockagentcore.GatewayTargetCommonProps |
TypeScript (source) | aws-cdk-lib » aws_bedrockagentcore » GatewayTargetCommonProps |
Common properties for all Gateway Target types.
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 gatewayTargetCommonProps: bedrockagentcore.GatewayTargetCommonProps = {
description: 'description',
gatewayTargetName: 'gatewayTargetName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Optional description for the gateway target The description can have up to 200 characters. |
| gateway | string | The name of the gateway target The name must be unique within the gateway Pattern: ^([0-9a-zA-Z][-]?){1,100}$. |
description?
Type:
string
(optional, default: No description)
Optional description for the gateway target The description can have up to 200 characters.
gatewayTargetName?
Type:
string
(optional, default: auto generate)
The name of the gateway target The name must be unique within the gateway Pattern: ^([0-9a-zA-Z][-]?){1,100}$.

.NET
Go
Java
Python
TypeScript (