Class: Aws::GlueDataBrew::Types::S3TableOutputOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::S3TableOutputOptions
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass S3TableOutputOptions data as a hash:
{
location: { # required
bucket: "Bucket", # required
key: "Key",
bucket_owner: "BucketOwner",
},
}
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#location ⇒ Types::S3Location
Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.
Instance Attribute Details
#location ⇒ Types::S3Location
Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.
4398 4399 4400 4401 4402 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4398 class S3TableOutputOptions < Struct.new( :location) SENSITIVE = [] include Aws::Structure end |