aws-cdk-lib.aws_transfer.CfnWorkflow.TagStepDetailsProperty

interface TagStepDetailsProperty

LanguageType name
.NETAmazon.CDK.AWS.Transfer.CfnWorkflow.TagStepDetailsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnWorkflow_TagStepDetailsProperty
Javasoftware.amazon.awscdk.services.transfer.CfnWorkflow.TagStepDetailsProperty
Pythonaws_cdk.aws_transfer.CfnWorkflow.TagStepDetailsProperty
TypeScript aws-cdk-lib » aws_transfer » CfnWorkflow » TagStepDetailsProperty

Details for a step that creates one or more tags.

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from 'aws-cdk-lib';
const tagStepDetailsProperty: transfer.CfnWorkflow.TagStepDetailsProperty = {
  name: 'name',
  sourceFileLocation: 'sourceFileLocation',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
name?stringThe name of the step, used as an identifier.
sourceFileLocation?stringSpecifies 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?S3TagProperty[]Array that contains from 1 to 10 key/value pairs.

name?

Type: string (optional)

The name of the step, used as an identifier.


sourceFileLocation?

Type: string (optional)

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.

  • To use the previous file as the input, enter ${previous.file} . In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.
  • To use the originally uploaded file location as input for this step, enter ${original.file} .

tags?

Type: S3TagProperty[] (optional)

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