Class CfnPipelinePropsMixin.PipelineTagProperty
A list of arbitrary tags (key-value pairs) to associate with the pipeline, which you can use to control permissions.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.DataPipeline.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPipelinePropsMixin.PipelineTagProperty : CfnPipelinePropsMixin.IPipelineTagProperty
Syntax (vb)
Public Class CfnPipelinePropsMixin.PipelineTagProperty Implements CfnPipelinePropsMixin.IPipelineTagProperty
Remarks
For more information, see Controlling Access to Pipelines and Resources in the AWS Data Pipeline Developer Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DataPipeline.Mixins;
var pipelineTagProperty = new PipelineTagProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
| PipelineTagProperty() | A list of arbitrary tags (key-value pairs) to associate with the pipeline, which you can use to control permissions. |
Properties
| Key | The key name of a tag. |
| Value | The value to associate with the key name. |
Constructors
PipelineTagProperty()
A list of arbitrary tags (key-value pairs) to associate with the pipeline, which you can use to control permissions.
public PipelineTagProperty()
Remarks
For more information, see Controlling Access to Pipelines and Resources in the AWS Data Pipeline Developer Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DataPipeline.Mixins;
var pipelineTagProperty = new PipelineTagProperty {
Key = "key",
Value = "value"
};
Properties
Key
The key name of a tag.
public string? Key { get; set; }
Property Value
Remarks
Value
The value to associate with the key name.
public string? Value { get; set; }