class Aws::DynamoDB::Table
def update(options = {})
-
(Table)
-
Options Hash:
(**options)
-
:sse_specification
(Types::SSESpecification
) -- -
:stream_specification
(Types::StreamSpecification
) -- -
:global_secondary_index_updates
(Array
) -- -
:provisioned_throughput
(Types::ProvisionedThroughput
) -- -
:attribute_definitions
(Array
) --
Parameters:
-
options
(Hash
) -- ({})
Other tags:
- Example: Request syntax with placeholder values -
def update(options = {}) options = options.merge(table_name: @name) resp = @client.update_table(options) Table.new( name: @name, data: resp.data.table_description, client: @client ) end