Class: Aws::LakeFormation::Types::AddObjectInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::AddObjectInput
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass AddObjectInput data as a hash:
{
uri: "URI", # required
etag: "ETagString", # required
size: 1, # required
partition_values: ["PartitionValueString"],
}
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.
164 165 166 167 168 169 170 171 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 164 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.
164 165 166 167 168 169 170 171 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 164 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.
164 165 166 167 168 169 170 171 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 164 class AddObjectInput < Struct.new( :uri, :etag, :size, :partition_values) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
The Amazon S3 location of the object.
164 165 166 167 168 169 170 171 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 164 class AddObjectInput < Struct.new( :uri, :etag, :size, :partition_values) SENSITIVE = [] include Aws::Structure end |