interface GatewayAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.GatewayAttributes |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#GatewayAttributes |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.GatewayAttributes |
Python | aws_cdk.aws_bedrock_agentcore_alpha.GatewayAttributes |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป GatewayAttributes |
Attributes for importing an existing Gateway.
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';
import { aws_iam as iam } from 'aws-cdk-lib';
declare const role: iam.Role;
const gatewayAttributes: bedrock_agentcore_alpha.GatewayAttributes = {
gatewayArn: 'gatewayArn',
gatewayId: 'gatewayId',
gatewayName: 'gatewayName',
role: role,
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The ARN of the gateway. |
| gateway | string | The ID of the gateway. |
| gateway | string | The name of the gateway. |
| role | IRole | The IAM role that provides permissions for the gateway. |
gatewayArn
Type:
string
The ARN of the gateway.
gatewayId
Type:
string
The ID of the gateway.
gatewayName
Type:
string
The name of the gateway.
role
Type:
IRole
The IAM role that provides permissions for the gateway.

.NET
Go
Java
Python
TypeScript (