interface GatewayTargetCommonProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.GatewayTargetCommonProps |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#GatewayTargetCommonProps |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.GatewayTargetCommonProps |
Python | aws_cdk.aws_bedrock_agentcore_alpha.GatewayTargetCommonProps |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha » 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 * as bedrock_agentcore_alpha from '@aws-cdk/aws-bedrock-agentcore-alpha';
const gatewayTargetCommonProps: bedrock_agentcore_alpha.GatewayTargetCommonProps = {
gatewayTargetName: 'gatewayTargetName',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The name of the gateway target The name must be unique within the gateway Pattern: ^([0-9a-zA-Z][-]?){1,100}$. |
| description? | string | Optional description for the gateway target The description can have up to 200 characters. |
gatewayTargetName
Type:
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.

.NET
Go
Java
Python
TypeScript (