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(experimental) Attributes for importing an existing Gateway Target.
- Parameters:
gateway (
IGateway) – (experimental) The gateway this target belongs to.gateway_target_name (
str) – (experimental) The name of the gateway target.target_arn (
str) – (experimental) The ARN of the gateway target.target_id (
str) – (experimental) The ID of the gateway target.created_at (
Optional[str]) – (experimental) Optional creation timestamp. Default: - No creation timestampstatus (
Optional[str]) – (experimental) Optional status of the target. Default: - No statusupdated_at (
Optional[str]) – (experimental) Optional last update timestamp. Default: - No update timestamp
- Stability:
experimental
- 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
(experimental) Optional creation timestamp.
- Default:
No creation timestamp
- Stability:
experimental
- gateway
(experimental) The gateway this target belongs to.
- Stability:
experimental
- gateway_target_name
(experimental) The name of the gateway target.
- Stability:
experimental
- status
(experimental) Optional status of the target.
- Default:
No status
- Stability:
experimental
- target_arn
(experimental) The ARN of the gateway target.
- Stability:
experimental
- target_id
(experimental) The ID of the gateway target.
- Stability:
experimental
- updated_at
(experimental) Optional last update timestamp.
- Default:
No update timestamp
- Stability:
experimental