Package-level declarations

Types

Link copied to clipboard
data class GetDatabaseResult(val arn: String, val createdTime: String, val id: String, val kmsKeyId: String, val lastUpdatedTime: String, val name: String, val tableCount: Int)

A collection of values returned by getDatabase.

Link copied to clipboard
data class GetTableMagneticStoreWriteProperty(val enableMagneticStoreWrites: Boolean, val magneticStoreRejectedDataLocations: List<GetTableMagneticStoreWritePropertyMagneticStoreRejectedDataLocation>)
Link copied to clipboard
data class GetTableResult(val arn: String, val creationTime: String, val databaseName: String, val id: String, val lastUpdatedTime: String, val magneticStoreWriteProperties: List<GetTableMagneticStoreWriteProperty>, val name: String, val retentionProperties: List<GetTableRetentionProperty>, val schemas: List<GetTableSchema>, val tableStatus: String)

A collection of values returned by getTable.

Link copied to clipboard
data class GetTableRetentionProperty(val magneticStoreRetentionPeriodInDays: Int, val memoryStoreRetentionPeriodInHours: Int)
Link copied to clipboard
data class GetTableSchema(val compositePartitionKeys: List<GetTableSchemaCompositePartitionKey>)
Link copied to clipboard
data class GetTableSchemaCompositePartitionKey(val enforcementInRecord: String, val name: String, val type: String)
Link copied to clipboard
data class TableMagneticStoreWriteProperties(val enableMagneticStoreWrites: Boolean? = null, val magneticStoreRejectedDataLocation: TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocation? = null)
data class TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocationS3Configuration(val bucketName: String? = null, val encryptionOption: String? = null, val kmsKeyId: String? = null, val objectKeyPrefix: String? = null)
Link copied to clipboard
data class TableRetentionProperties(val magneticStoreRetentionPeriodInDays: Int, val memoryStoreRetentionPeriodInHours: Int)
Link copied to clipboard
data class TableSchema(val compositePartitionKey: TableSchemaCompositePartitionKey? = null)
Link copied to clipboard
data class TableSchemaCompositePartitionKey(val enforcementInRecord: String? = null, val name: String? = null, val type: String)