GatewayAttributes

class aws_cdk.aws_bedrockagentcore.GatewayAttributes(*, gateway_arn, gateway_id, gateway_name, role)

Bases: object

Attributes for importing an existing Gateway.

Parameters:
  • gateway_arn (str) – The ARN of the gateway.

  • gateway_id (str) – The ID of the gateway.

  • gateway_name (str) – The name of the gateway.

  • role (IRole) – The IAM role that provides permissions for the gateway.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_bedrockagentcore as bedrockagentcore
from aws_cdk import aws_iam as iam

# role: iam.Role

gateway_attributes = bedrockagentcore.GatewayAttributes(
    gateway_arn="gatewayArn",
    gateway_id="gatewayId",
    gateway_name="gatewayName",
    role=role
)

Attributes

gateway_arn

The ARN of the gateway.

gateway_id

The ID of the gateway.

gateway_name

The name of the gateway.

role

The IAM role that provides permissions for the gateway.