Class: Aws::LakeFormation::Types::WriteOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::WriteOperation
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass WriteOperation data as a hash:
{
add_object: {
uri: "URI", # required
etag: "ETagString", # required
size: 1, # required
partition_values: ["PartitionValueString"],
},
delete_object: {
uri: "URI", # required
etag: "ETagString",
partition_values: ["PartitionValueString"],
},
}
Defines an object to add to or delete from a governed table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#add_object ⇒ Types::AddObjectInput
A new object to add to the governed table.
-
#delete_object ⇒ Types::DeleteObjectInput
An object to delete from the governed table.
Instance Attribute Details
#add_object ⇒ Types::AddObjectInput
A new object to add to the governed table.
4498 4499 4500 4501 4502 4503 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 4498 class WriteOperation < Struct.new( :add_object, :delete_object) SENSITIVE = [] include Aws::Structure end |
#delete_object ⇒ Types::DeleteObjectInput
An object to delete from the governed table.
4498 4499 4500 4501 4502 4503 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 4498 class WriteOperation < Struct.new( :add_object, :delete_object) SENSITIVE = [] include Aws::Structure end |