Class: Aws::GlueDataBrew::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::S3Location
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The Amazon S3 bucket name.
-
#bucket_owner ⇒ String
The Amazon Web Services account ID of the bucket owner.
-
#key ⇒ String
The unique name of the object in the bucket.
Instance Attribute Details
#bucket ⇒ String
The Amazon S3 bucket name.
3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3373 class S3Location < Struct.new( :bucket, :key, :bucket_owner) SENSITIVE = [] include Aws::Structure end |
#bucket_owner ⇒ String
The Amazon Web Services account ID of the bucket owner.
3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3373 class S3Location < Struct.new( :bucket, :key, :bucket_owner) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The unique name of the object in the bucket.
3373 3374 3375 3376 3377 3378 3379 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3373 class S3Location < Struct.new( :bucket, :key, :bucket_owner) SENSITIVE = [] include Aws::Structure end |