Class: Aws::GlueDataBrew::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::S3Location
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass S3Location data as a hash:
{
bucket: "Bucket", # required
key: "Key",
}
An Amazon S3 location (bucket name an 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 S3 bucket name.
-
#key ⇒ String
The unique name of the object in the bucket.
Instance Attribute Details
#bucket ⇒ String
The S3 bucket name.
2917 2918 2919 2920 2921 2922 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2917 class S3Location < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The unique name of the object in the bucket.
2917 2918 2919 2920 2921 2922 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 2917 class S3Location < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |