Class: Aws::LakeFormation::Types::DeleteObjectInput

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

Overview

An object to delete from 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)


935
936
937
938
939
940
941
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 935

class DeleteObjectInput < Struct.new(
  :uri,
  :etag,
  :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 governed table.

Returns:

  • (Array<String>)


935
936
937
938
939
940
941
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 935

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

#uriString

The Amazon S3 location of the object to delete.

Returns:

  • (String)


935
936
937
938
939
940
941
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 935

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