Table Properties
The following properties are available on instances of the Table
Class. Properties can be changed by directly setting the property value:
MyTable.autoExecute = false
MyTable.autoParse = false
DocumentClient
The DocumentClient
property allows you to get a reference to the table's assigned DocumentClient
, or to add/update the table's DocumentClient
. When setting this property, it must be a valid instance of the AWS DocumentClient.
entities
The entities
property will retrieve an array
of string
s containing all entity names attached to the table.
autoExecute
This property will retrieve a boolean
indicating the current autoExecute
setting on the table. You can change this setting by supplying a boolean
value.
autoParse
This property will retrieve a boolean
indicating the current autoParse
setting on the table. You can change this setting by supplying a boolean
value.