Show / Hide Table of Contents

Class CfnPipelinePropsMixin.PipelineTagProperty

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

Inheritance
object
CfnPipelinePropsMixin.PipelineTagProperty
Implements
CfnPipelinePropsMixin.IPipelineTagProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetag.html

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetag.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetag.html#cfn-datapipeline-pipeline-pipelinetag-key

Value

The value to associate with the key name.

public string? Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetag.html#cfn-datapipeline-pipeline-pipelinetag-value

Implements

CfnPipelinePropsMixin.IPipelineTagProperty
Back to top Generated by DocFX