GatewayReference

class aws_cdk.aws_bedrockagentcore.GatewayReference(*, gateway_arn, gateway_identifier)

Bases: object

A reference to a Gateway resource.

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

  • gateway_identifier (str) – The GatewayIdentifier of the Gateway resource.

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

gateway_reference = bedrockagentcore.GatewayReference(
    gateway_arn="gatewayArn",
    gateway_identifier="gatewayIdentifier"
)

Attributes

gateway_arn

The ARN of the Gateway resource.

gateway_identifier

The GatewayIdentifier of the Gateway resource.