AWSDynamoDBGlobalTableDescription
Objective-C
@interface AWSDynamoDBGlobalTableDescription
Swift
class AWSDynamoDBGlobalTableDescription
Contains details about the global table.
-
The creation time of the global table.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable creationDateTime;
Swift
var creationDateTime: Date? { get set }
-
The unique identifier of the global table.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable globalTableArn;
Swift
var globalTableArn: String? { get set }
-
The global table name.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable globalTableName;
Swift
var globalTableName: String? { get set }
-
The current state of the global table:
CREATING
- The global table is being created.UPDATING
- The global table is being updated.DELETING
- The global table is being deleted.ACTIVE
- The global table is ready for use.
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBGlobalTableStatus globalTableStatus;
Swift
var globalTableStatus: AWSDynamoDBGlobalTableStatus { get set }
-
The Regions where the global table has replicas.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSDynamoDBReplicaDescription *> *_Nullable replicationGroup;
Swift
var replicationGroup: [AWSDynamoDBReplicaDescription]? { get set }