Interface CfnWorkflow.S3FileLocationProperty

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

@Stability(Stable) public static interface CfnWorkflow.S3FileLocationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.

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.*;
 S3FileLocationProperty s3FileLocationProperty = S3FileLocationProperty.builder()
         .s3FileLocation(S3InputFileLocationProperty.builder()
                 .bucket("bucket")
                 .key("key")
                 .build())
         .build();
 

See Also: