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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkflow.S3FileLocationProperty
static final class
An implementation forCfnWorkflow.S3FileLocationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3FileLocation
Specifies the details for the file location for the file that's being used in the workflow.Only applicable if you are using Amazon S3 storage.
- See Also:
-
builder
-