AWSDynamoDBUpdateTimeToLiveInput

Objective-C

@interface AWSDynamoDBUpdateTimeToLiveInput

Swift

class AWSDynamoDBUpdateTimeToLiveInput

Represents the input of an UpdateTimeToLive operation.

Required parameters: [TableName, TimeToLiveSpecification]

  • The name of the table to be configured. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.

    Declaration

    Objective-C

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

    Swift

    var tableName: String? { get set }
  • Represents the settings used to enable or disable Time to Live for the specified table.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSDynamoDBTimeToLiveSpecification *_Nullable timeToLiveSpecification;

    Swift

    var timeToLiveSpecification: AWSDynamoDBTimeToLiveSpecification? { get set }