class Aws::DynamoDB::Table
def update(options = {})
-
(Table)-
Options Hash:
(**options)-
:warm_throughput(Types::WarmThroughput) -- -
:on_demand_throughput(Types::OnDemandThroughput) -- -
:multi_region_consistency(String) -- -
:deletion_protection_enabled(Boolean) -- -
:table_class(String) -- -
:replica_updates(Array) -- -
:sse_specification(Types::SSESpecification) -- -
:stream_specification(Types::StreamSpecification) -- -
:global_secondary_index_updates(Array) -- -
:provisioned_throughput(Types::ProvisionedThroughput) -- -
:billing_mode(String) -- -
:attribute_definitions(Array) --
Parameters:
-
options(Hash) -- ({})
Other tags:
- Example: Request syntax with placeholder values -
def update(options = {}) options = options.merge(table_name: @name) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.update_table(options) end Table.new( name: @name, data: resp.data.table_description, client: @client ) end