Class: Aws::S3Tables::Types::TableMaintenanceSettings

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

Overview

Note:

TableMaintenanceSettings is a union - when making an API calls you must set exactly one of the members.

Note:

TableMaintenanceSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TableMaintenanceSettings corresponding to the set member.

Contains details about maintenance settings for the table.

Defined Under Namespace

Classes: IcebergCompaction, IcebergSnapshotManagement, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#iceberg_compactionTypes::IcebergCompactionSettings

Contains details about the Iceberg compaction settings for the table.



2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2332

class TableMaintenanceSettings < Struct.new(
  :iceberg_compaction,
  :iceberg_snapshot_management,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IcebergCompaction < TableMaintenanceSettings; end
  class IcebergSnapshotManagement < TableMaintenanceSettings; end
  class Unknown < TableMaintenanceSettings; end
end

#iceberg_snapshot_managementTypes::IcebergSnapshotManagementSettings

Contains details about the Iceberg snapshot management settings for the table.



2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2332

class TableMaintenanceSettings < Struct.new(
  :iceberg_compaction,
  :iceberg_snapshot_management,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IcebergCompaction < TableMaintenanceSettings; end
  class IcebergSnapshotManagement < TableMaintenanceSettings; end
  class Unknown < TableMaintenanceSettings; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2332
2333
2334
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 2332

def unknown
  @unknown
end