Class: Aws::LakeFormation::Types::AddObjectInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::AddObjectInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
A new object to add to the governed table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#etag ⇒ String
The Amazon S3 ETag of the object.
-
#partition_values ⇒ Array<String>
A list of partition values for the object.
-
#size ⇒ Integer
The size of the Amazon S3 object in bytes.
-
#uri ⇒ String
The Amazon S3 location of the object.
Instance Attribute Details
#etag ⇒ String
The Amazon S3 ETag of the object. Returned by ‘GetTableObjects` for validation and used to identify changes to the underlying data.
91 92 93 94 95 96 97 98 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 91 class AddObjectInput < Struct.new( :uri, :etag, :size, :partition_values) SENSITIVE = [] include Aws::Structure end |
#partition_values ⇒ Array<String>
A list of partition values for the object. A value must be specified for each partition key associated with the table.
The supported data types are integer, long, date(yyyy-MM-dd), timestamp(yyyy-MM-dd HH:mm:ssXXX or yyyy-MM-dd HH:mm:ss“), string and decimal.
91 92 93 94 95 96 97 98 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 91 class AddObjectInput < Struct.new( :uri, :etag, :size, :partition_values) SENSITIVE = [] include Aws::Structure end |
#size ⇒ Integer
The size of the Amazon S3 object in bytes.
91 92 93 94 95 96 97 98 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 91 class AddObjectInput < Struct.new( :uri, :etag, :size, :partition_values) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
The Amazon S3 location of the object.
91 92 93 94 95 96 97 98 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 91 class AddObjectInput < Struct.new( :uri, :etag, :size, :partition_values) SENSITIVE = [] include Aws::Structure end |