Class: Aws::LakeFormation::Types::DeleteObjectInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::DeleteObjectInput
- 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
-
#etag ⇒ String
The Amazon S3 ETag of the object.
-
#partition_values ⇒ Array<String>
A list of partition values for the object.
-
#uri ⇒ String
The Amazon S3 location of the object to delete.
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.
991 992 993 994 995 996 997 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 991 class DeleteObjectInput < Struct.new( :uri, :etag, :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 governed table.
991 992 993 994 995 996 997 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 991 class DeleteObjectInput < Struct.new( :uri, :etag, :partition_values) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
The Amazon S3 location of the object to delete.
991 992 993 994 995 996 997 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 991 class DeleteObjectInput < Struct.new( :uri, :etag, :partition_values) SENSITIVE = [] include Aws::Structure end |