GatewayTargetAttributes

class aws_cdk.aws_bedrockagentcore.GatewayTargetAttributes(*, gateway, gateway_target_name, target_arn, target_id, created_at=None, status=None, updated_at=None)

Bases: object

Attributes for importing an existing Gateway Target.

Parameters:
  • gateway (IGateway) – The gateway this target belongs to.

  • gateway_target_name (str) – The name of the gateway target.

  • target_arn (str) – The ARN of the gateway target.

  • target_id (str) – The ID of the gateway target.

  • created_at (Optional[str]) – Optional creation timestamp. Default: - No creation timestamp

  • status (Optional[str]) – Optional status of the target. Default: - No status

  • updated_at (Optional[str]) – Optional last update timestamp. Default: - No update timestamp

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: bedrockagentcore.Gateway

gateway_target_attributes = bedrockagentcore.GatewayTargetAttributes(
    gateway=gateway,
    gateway_target_name="gatewayTargetName",
    target_arn="targetArn",
    target_id="targetId",

    # the properties below are optional
    created_at="createdAt",
    status="status",
    updated_at="updatedAt"
)

Attributes

created_at

Optional creation timestamp.

Default:
  • No creation timestamp

gateway

The gateway this target belongs to.

gateway_target_name

The name of the gateway target.

status

Optional status of the target.

Default:
  • No status

target_arn

The ARN of the gateway target.

target_id

The ID of the gateway target.

updated_at

Optional last update timestamp.

Default:
  • No update timestamp