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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


1037
1038
1039
1040
1041
1042
1043
# File 'lib/aws-sdk-lakeformation/types.rb', line 1037

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>)


1037
1038
1039
1040
1041
1042
1043
# File 'lib/aws-sdk-lakeformation/types.rb', line 1037

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)


1037
1038
1039
1040
1041
1042
1043
# File 'lib/aws-sdk-lakeformation/types.rb', line 1037

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