interface PipeReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Pipes.PipeReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awspipes#PipeReference | 
|  Java | software.amazon.awscdk.services.pipes.PipeReference | 
|  Python | aws_cdk.aws_pipes.PipeReference | 
|  TypeScript | aws-cdk-lib»aws_pipes»PipeReference | 
A reference to a Pipe resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pipes as pipes } from 'aws-cdk-lib';
const pipeReference: pipes.PipeReference = {
  pipeArn: 'pipeArn',
  pipeName: 'pipeName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| pipe | string | The ARN of the Pipe resource. | 
| pipe | string | The Name of the Pipe resource. | 
pipeArn
Type:
string
The ARN of the Pipe resource.
pipeName
Type:
string
The Name of the Pipe resource.
