interface GatewayTargetAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.GatewayTargetAttributes |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#GatewayTargetAttributes |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.GatewayTargetAttributes |
Python | aws_cdk.aws_bedrock_agentcore_alpha.GatewayTargetAttributes |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป GatewayTargetAttributes |
Attributes for importing an existing Gateway Target.
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';
declare const gateway: bedrock_agentcore_alpha.Gateway;
const gatewayTargetAttributes: bedrock_agentcore_alpha.GatewayTargetAttributes = {
gateway: gateway,
gatewayTargetName: 'gatewayTargetName',
targetArn: 'targetArn',
targetId: 'targetId',
// the properties below are optional
createdAt: 'createdAt',
status: 'status',
updatedAt: 'updatedAt',
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | IGateway | The gateway this target belongs to. |
| gateway | string | The name of the gateway target. |
| target | string | The ARN of the gateway target. |
| target | string | The ID of the gateway target. |
| created | string | Optional creation timestamp. |
| status? | string | Optional status of the target. |
| updated | string | Optional last update timestamp. |
gateway
Type:
IGateway
The gateway this target belongs to.
gatewayTargetName
Type:
string
The name of the gateway target.
targetArn
Type:
string
The ARN of the gateway target.
targetId
Type:
string
The ID of the gateway target.
createdAt?
Type:
string
(optional, default: No creation timestamp)
Optional creation timestamp.
status?
Type:
string
(optional, default: No status)
Optional status of the target.
updatedAt?
Type:
string
(optional, default: No update timestamp)
Optional last update timestamp.

.NET
Go
Java
Python
TypeScript (