GatewayTargetReference

class aws_cdk.aws_bedrockagentcore.GatewayTargetReference(*, gateway_identifier, target_id)

Bases: object

A reference to a GatewayTarget resource.

Parameters:
  • gateway_identifier (str) – The GatewayIdentifier of the GatewayTarget resource.

  • target_id (str) – The TargetId of the GatewayTarget 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_target_reference = bedrockagentcore.GatewayTargetReference(
    gateway_identifier="gatewayIdentifier",
    target_id="targetId"
)

Attributes

gateway_identifier

The GatewayIdentifier of the GatewayTarget resource.

target_id

The TargetId of the GatewayTarget resource.