Learn R Programming

paws.database (version 0.1.12)

dynamodb_describe_time_to_live: Gives a description of the Time to Live (TTL) status on the specified table

Description

Gives a description of the Time to Live (TTL) status on the specified table.

Usage

dynamodb_describe_time_to_live(TableName)

Value

A list with the following syntax:

list(
  TimeToLiveDescription = list(
    TimeToLiveStatus = "ENABLING"|"DISABLING"|"ENABLED"|"DISABLED",
    AttributeName = "string"
  )
)

Arguments

TableName

[required] The name of the table to be described.

Request syntax

svc$describe_time_to_live(
  TableName = "string"
)