GatewayTargetAttributes
- class aws_cdk.aws_bedrock_agentcore_alpha.GatewayTargetAttributes(*, gateway, gateway_target_name, target_arn, target_id, created_at=None, status=None, updated_at=None)
Bases:
object(deprecated) Attributes for importing an existing Gateway Target.
- Parameters:
gateway (
IGateway) – (deprecated) The gateway this target belongs to.gateway_target_name (
str) – (deprecated) The name of the gateway target.target_arn (
str) – (deprecated) The ARN of the gateway target.target_id (
str) – (deprecated) The ID of the gateway target.created_at (
Optional[str]) – (deprecated) Optional creation timestamp. Default: - No creation timestampstatus (
Optional[str]) – (deprecated) Optional status of the target. Default: - No statusupdated_at (
Optional[str]) – (deprecated) Optional last update timestamp. Default: - No update timestamp
- Deprecated:
Use the equivalent construct from
aws-cdk-lib/aws-bedrockagentcoreinstead.- Stability:
deprecated
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha # gateway: bedrock_agentcore_alpha.Gateway gateway_target_attributes = bedrock_agentcore_alpha.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
(deprecated) Optional creation timestamp.
- Default:
No creation timestamp
- Stability:
deprecated
- gateway
(deprecated) The gateway this target belongs to.
- Stability:
deprecated
- gateway_target_name
(deprecated) The name of the gateway target.
- Stability:
deprecated
- status
(deprecated) Optional status of the target.
- Default:
No status
- Stability:
deprecated
- target_arn
(deprecated) The ARN of the gateway target.
- Stability:
deprecated
- target_id
(deprecated) The ID of the gateway target.
- Stability:
deprecated
- updated_at
(deprecated) Optional last update timestamp.
- Default:
No update timestamp
- Stability:
deprecated