GatewayReference
- class aws_cdk.interfaces.aws_bedrockagentcore.GatewayReference(*, gateway_arn, gateway_identifier)
Bases:
objectA 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.interfaces import aws_bedrockagentcore as interfaces_bedrockagentcore gateway_reference = interfaces_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.