Interface CfnWorkflow.S3InputFileLocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflow.S3InputFileLocationProperty.Jsii$Proxy
- Enclosing class:
- CfnWorkflow
@Stability(Stable)
public static interface CfnWorkflow.S3InputFileLocationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the details for the Amazon S3 location for an input file to a workflow.
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.*;
S3InputFileLocationProperty s3InputFileLocationProperty = S3InputFileLocationProperty.builder()
.bucket("bucket")
.key("key")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflow.S3InputFileLocationPropertystatic final classAn implementation forCfnWorkflow.S3InputFileLocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
Specifies the S3 bucket for the customer input file. -
getKey
The name assigned to the file when it was created in Amazon S3.You use the object key to retrieve the object.
-
builder
-