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.



1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1259

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.



1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1259

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



1259
1260
1261
# File 'gems/aws-sdk-s3tables/lib/aws-sdk-s3tables/types.rb', line 1259

def unknown
  @unknown
end