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.
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
Remarks
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
Remarks
Tags
Array that contains from 1 to 10 key/value pairs.
CfnWorkflow.IS3TagProperty[]? Tags { get; }