Class: Aws::GlueDataBrew::Types::S3Location

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-gluedatabrew/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

Instance Attribute Details

#bucketString

The Amazon S3 bucket name.

Returns:

  • (String)


3373
3374
3375
3376
3377
3378
3379
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3373

class S3Location < Struct.new(
  :bucket,
  :key,
  :bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end

#bucket_ownerString

The Amazon Web Services account ID of the bucket owner.

Returns:

  • (String)


3373
3374
3375
3376
3377
3378
3379
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3373

class S3Location < Struct.new(
  :bucket,
  :key,
  :bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end

#keyString

The unique name of the object in the bucket.

Returns:

  • (String)


3373
3374
3375
3376
3377
3378
3379
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3373

class S3Location < Struct.new(
  :bucket,
  :key,
  :bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end