Interface CfnWorkflow.CopyStepDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflow.CopyStepDetailsProperty.Jsii$Proxy
Enclosing class:
CfnWorkflow

@Stability(Stable) public static interface CfnWorkflow.CopyStepDetailsProperty extends software.amazon.jsii.JsiiSerializable
Details for a step that performs a file copy.

Consists of the following values:

  • A description
  • An Amazon S3 location for the destination of the file copy.
  • A flag that indicates whether to overwrite an existing file of the same name. The default is FALSE .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.transfer.*;
 CopyStepDetailsProperty copyStepDetailsProperty = CopyStepDetailsProperty.builder()
         .destinationFileLocation(S3FileLocationProperty.builder()
                 .s3FileLocation(S3InputFileLocationProperty.builder()
                         .bucket("bucket")
                         .key("key")
                         .build())
                 .build())
         .name("name")
         .overwriteExisting("overwriteExisting")
         .sourceFileLocation("sourceFileLocation")
         .build();
 

See Also: