aws-cdk-lib.aws_datapipeline.CfnPipeline.PipelineTagProperty

interface PipelineTagProperty

LanguageType name
.NETAmazon.CDK.AWS.DataPipeline.CfnPipeline.PipelineTagProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatapipeline#CfnPipeline_PipelineTagProperty
Javasoftware.amazon.awscdk.services.datapipeline.CfnPipeline.PipelineTagProperty
Pythonaws_cdk.aws_datapipeline.CfnPipeline.PipelineTagProperty
TypeScript aws-cdk-lib » aws_datapipeline » CfnPipeline » PipelineTagProperty

A list of arbitrary tags (key-value pairs) to associate with the pipeline, which you can use to control permissions.

For more information, see Controlling Access to Pipelines and Resources in the AWS Data Pipeline Developer Guide .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datapipeline as datapipeline } from 'aws-cdk-lib';
const pipelineTagProperty: datapipeline.CfnPipeline.PipelineTagProperty = {
  key: 'key',
  value: 'value',
};

Properties

NameTypeDescription
keystringThe key name of a tag.
valuestringThe value to associate with the key name.

key

Type: string

The key name of a tag.


value

Type: string

The value to associate with the key name.