Class: Aws::LakeFormation::Types::AddObjectInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb

Overview

A new object to add to the governed table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#etagString

The Amazon S3 ETag of the object. Returned by GetTableObjects for validation and used to identify changes to the underlying data.

Returns:

  • (String)


91
92
93
94
95
96
97
98
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 91

class AddObjectInput < Struct.new(
  :uri,
  :etag,
  :size,
  :partition_values)
  SENSITIVE = []
  include Aws::Structure
end

#partition_valuesArray<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.

Returns:

  • (Array<String>)


91
92
93
94
95
96
97
98
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 91

class AddObjectInput < Struct.new(
  :uri,
  :etag,
  :size,
  :partition_values)
  SENSITIVE = []
  include Aws::Structure
end

#sizeInteger

The size of the Amazon S3 object in bytes.

Returns:

  • (Integer)


91
92
93
94
95
96
97
98
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 91

class AddObjectInput < Struct.new(
  :uri,
  :etag,
  :size,
  :partition_values)
  SENSITIVE = []
  include Aws::Structure
end

#uriString

The Amazon S3 location of the object.

Returns:

  • (String)


91
92
93
94
95
96
97
98
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 91

class AddObjectInput < Struct.new(
  :uri,
  :etag,
  :size,
  :partition_values)
  SENSITIVE = []
  include Aws::Structure
end