interface PipeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Pipes.PipeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspipes#PipeReference |
Java | software.amazon.awscdk.interfaces.pipes.PipeReference |
Python | aws_cdk.interfaces.aws_pipes.PipeReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_pipes } from 'aws-cdk-lib/interfaces';
const pipeReference: interfaces_aws_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.

.NET
Go
Java
Python
TypeScript