Interface CfnJob.S3TableOutputOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJob.S3TableOutputOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnJob
@Stability(Stable)
public static interface CfnJob.S3TableOutputOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
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.databrew.*;
S3TableOutputOptionsProperty s3TableOutputOptionsProperty = S3TableOutputOptionsProperty.builder()
.location(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.bucketOwner("bucketOwner")
.key("key")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJob.S3TableOutputOptionsPropertystatic final classAn implementation forCfnJob.S3TableOutputOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocation
Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.Returns union: either
IResolvableorCfnJob.S3LocationProperty- See Also:
-
builder
-