AWSDynamoDBCreateReplicationGroupMemberAction

Objective-C

@interface AWSDynamoDBCreateReplicationGroupMemberAction

Swift

class AWSDynamoDBCreateReplicationGroupMemberAction

Represents a replica to be created.

Required parameters: [RegionName]

  • Replica-specific global secondary index settings.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSDynamoDBReplicaGlobalSecondaryIndex *> *_Nullable globalSecondaryIndexes;

    Swift

    var globalSecondaryIndexes: [AWSDynamoDBReplicaGlobalSecondaryIndex]? { get set }
  • The KMS key that should be used for KMS encryption in the new replica. To specify a key, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB KMS key alias/aws/dynamodb.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable KMSMasterKeyId;

    Swift

    var kmsMasterKeyId: String? { get set }
  • Replica-specific provisioned throughput. If not specified, uses the source table’s provisioned throughput settings.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSDynamoDBProvisionedThroughputOverride *_Nullable provisionedThroughputOverride;

    Swift

    var provisionedThroughputOverride: AWSDynamoDBProvisionedThroughputOverride? { get set }
  • The Region where the new replica will be created.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable regionName;

    Swift

    var regionName: String? { get set }
  • Replica-specific table class. If not specified, uses the source table’s table class.

    Declaration

    Objective-C

    @property (nonatomic) AWSDynamoDBTableClass tableClassOverride;

    Swift

    var tableClassOverride: AWSDynamoDBTableClass { get set }