PipeReference
- class aws_cdk.aws_pipes.PipeReference(*, pipe_arn, pipe_name)
Bases:
object
A reference to a Pipe resource.
- Parameters:
pipe_arn (
str
) – The ARN of the Pipe resource.pipe_name (
str
) – The Name of the Pipe 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_pipes as pipes pipe_reference = pipes.PipeReference( pipe_arn="pipeArn", pipe_name="pipeName" )
Attributes
- pipe_arn
The ARN of the Pipe resource.
- pipe_name
The Name of the Pipe resource.