Show / Hide Table of Contents

Interface CfnWorkflow.ITagStepDetailsProperty

Details for a step that creates one or more tags.

Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWorkflow.ITagStepDetailsProperty
Syntax (vb)
Public Interface CfnWorkflow.ITagStepDetailsProperty
Remarks

You specify one or more tags. Each tag contains a key-value pair.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-tagstepdetails.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.AWS.Transfer;

             var tagStepDetailsProperty = new TagStepDetailsProperty {
                 Name = "name",
                 SourceFileLocation = "sourceFileLocation",
                 Tags = new [] { new S3TagProperty {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Name

The name of the step, used as an identifier.

SourceFileLocation

Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.

Tags

Array that contains from 1 to 10 key/value pairs.

Properties

Name

The name of the step, used as an identifier.

string? Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-tagstepdetails.html#cfn-transfer-workflow-tagstepdetails-name

SourceFileLocation

Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.

string? SourceFileLocation { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-tagstepdetails.html#cfn-transfer-workflow-tagstepdetails-sourcefilelocation

    Tags

    Array that contains from 1 to 10 key/value pairs.

    CfnWorkflow.IS3TagProperty[]? Tags { get; }
    Property Value

    IS3TagProperty[]

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-tagstepdetails.html#cfn-transfer-workflow-tagstepdetails-tags

    Back to top Generated by DocFX