Class: Aws::LakeFormation::Types::DeleteObjectsOnCancelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::DeleteObjectsOnCancelRequest
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass DeleteObjectsOnCancelRequest data as a hash:
{
catalog_id: "CatalogIdString",
database_name: "NameString", # required
table_name: "NameString", # required
transaction_id: "TransactionIdString", # required
objects: [ # required
{
uri: "URI", # required
etag: "ETagString",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_id ⇒ String
The Glue data catalog that contains the governed table.
-
#database_name ⇒ String
The database that contains the governed table.
-
#objects ⇒ Array<Types::VirtualObject>
A list of VirtualObject structures, which indicates the Amazon S3 objects to be deleted if the transaction cancels.
-
#table_name ⇒ String
The name of the governed table.
-
#transaction_id ⇒ String
ID of the transaction that the writes occur in.
Instance Attribute Details
#catalog_id ⇒ String
The Glue data catalog that contains the governed table. Defaults to the current account ID.
1209 1210 1211 1212 1213 1214 1215 1216 1217 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1209 class DeleteObjectsOnCancelRequest < Struct.new( :catalog_id, :database_name, :table_name, :transaction_id, :objects) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The database that contains the governed table.
1209 1210 1211 1212 1213 1214 1215 1216 1217 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1209 class DeleteObjectsOnCancelRequest < Struct.new( :catalog_id, :database_name, :table_name, :transaction_id, :objects) SENSITIVE = [] include Aws::Structure end |
#objects ⇒ Array<Types::VirtualObject>
A list of VirtualObject structures, which indicates the Amazon S3 objects to be deleted if the transaction cancels.
1209 1210 1211 1212 1213 1214 1215 1216 1217 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1209 class DeleteObjectsOnCancelRequest < Struct.new( :catalog_id, :database_name, :table_name, :transaction_id, :objects) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the governed table.
1209 1210 1211 1212 1213 1214 1215 1216 1217 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1209 class DeleteObjectsOnCancelRequest < Struct.new( :catalog_id, :database_name, :table_name, :transaction_id, :objects) SENSITIVE = [] include Aws::Structure end |
#transaction_id ⇒ String
ID of the transaction that the writes occur in.
1209 1210 1211 1212 1213 1214 1215 1216 1217 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 1209 class DeleteObjectsOnCancelRequest < Struct.new( :catalog_id, :database_name, :table_name, :transaction_id, :objects) SENSITIVE = [] include Aws::Structure end |