amazonka-dynamodb-1.6.1: Amazon DynamoDB SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.DynamoDB.UpdateTable

Contents

Description

Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table.

You can only perform one of the following operations at once:

  • Modify the provisioned throughput settings of the table.
  • Enable or disable Streams on the table.
  • Remove a global secondary index from the table.
  • Create a new global secondary index on the table. Once the index begins backfilling, you can use UpdateTable to perform other operations.

UpdateTable is an asynchronous operation; while it is executing, the table status changes from ACTIVE to UPDATING . While it is UPDATING , you cannot issue another UpdateTable request. When the table returns to the ACTIVE state, the UpdateTable operation is complete.

Synopsis

Creating a Request

updateTable Source #

Creates a value of UpdateTable with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • utAttributeDefinitions - An array of attributes that describe the key schema for the table and indexes. If you are adding a new global secondary index to the table, AttributeDefinitions must include the key element(s) of the new index.
  • utProvisionedThroughput - The new provisioned throughput settings for the specified table or index.
  • utGlobalSecondaryIndexUpdates - An array of one or more global secondary indexes for the table. For each index in the array, you can request one action: * Create - add a new global secondary index to the table. * Update - modify the provisioned throughput settings of an existing global secondary index. * Delete - remove a global secondary index from the table. For more information, see Managing Global Secondary Indexes in the Amazon DynamoDB Developer Guide .
  • utStreamSpecification - Represents the DynamoDB Streams configuration for the table.
  • utTableName - The name of the table to be updated.

data UpdateTable Source #

Represents the input of an UpdateTable operation.

See: updateTable smart constructor.

Instances
Eq UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Data UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateTable -> c UpdateTable #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateTable #

toConstr :: UpdateTable -> Constr #

dataTypeOf :: UpdateTable -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c UpdateTable) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateTable) #

gmapT :: (forall b. Data b => b -> b) -> UpdateTable -> UpdateTable #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateTable -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateTable -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateTable -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateTable -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateTable -> m UpdateTable #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateTable -> m UpdateTable #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateTable -> m UpdateTable #

Read UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Show UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Generic UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Associated Types

type Rep UpdateTable :: Type -> Type #

Hashable UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

ToJSON UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

AWSRequest UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Associated Types

type Rs UpdateTable :: Type #

ToHeaders UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Methods

toHeaders :: UpdateTable -> [Header] #

ToPath UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

ToQuery UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

NFData UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Methods

rnf :: UpdateTable -> () #

type Rep UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

type Rep UpdateTable = D1 (MetaData "UpdateTable" "Network.AWS.DynamoDB.UpdateTable" "amazonka-dynamodb-1.6.1-FTtIhwsA5vX17zvPeEA8Mr" False) (C1 (MetaCons "UpdateTable'" PrefixI True) ((S1 (MetaSel (Just "_utAttributeDefinitions") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [AttributeDefinition])) :*: S1 (MetaSel (Just "_utProvisionedThroughput") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ProvisionedThroughput))) :*: (S1 (MetaSel (Just "_utGlobalSecondaryIndexUpdates") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [GlobalSecondaryIndexUpdate])) :*: (S1 (MetaSel (Just "_utStreamSpecification") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe StreamSpecification)) :*: S1 (MetaSel (Just "_utTableName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs UpdateTable Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Request Lenses

utAttributeDefinitions :: Lens' UpdateTable [AttributeDefinition] Source #

An array of attributes that describe the key schema for the table and indexes. If you are adding a new global secondary index to the table, AttributeDefinitions must include the key element(s) of the new index.

utProvisionedThroughput :: Lens' UpdateTable (Maybe ProvisionedThroughput) Source #

The new provisioned throughput settings for the specified table or index.

utGlobalSecondaryIndexUpdates :: Lens' UpdateTable [GlobalSecondaryIndexUpdate] Source #

An array of one or more global secondary indexes for the table. For each index in the array, you can request one action: * Create - add a new global secondary index to the table. * Update - modify the provisioned throughput settings of an existing global secondary index. * Delete - remove a global secondary index from the table. For more information, see Managing Global Secondary Indexes in the Amazon DynamoDB Developer Guide .

utStreamSpecification :: Lens' UpdateTable (Maybe StreamSpecification) Source #

Represents the DynamoDB Streams configuration for the table.

utTableName :: Lens' UpdateTable Text Source #

The name of the table to be updated.

Destructuring the Response

updateTableResponse Source #

Creates a value of UpdateTableResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data UpdateTableResponse Source #

Represents the output of an UpdateTable operation.

See: updateTableResponse smart constructor.

Instances
Eq UpdateTableResponse Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Data UpdateTableResponse Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateTableResponse -> c UpdateTableResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateTableResponse #

toConstr :: UpdateTableResponse -> Constr #

dataTypeOf :: UpdateTableResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c UpdateTableResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateTableResponse) #

gmapT :: (forall b. Data b => b -> b) -> UpdateTableResponse -> UpdateTableResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateTableResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateTableResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateTableResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateTableResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateTableResponse -> m UpdateTableResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateTableResponse -> m UpdateTableResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateTableResponse -> m UpdateTableResponse #

Read UpdateTableResponse Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Show UpdateTableResponse Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Generic UpdateTableResponse Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Associated Types

type Rep UpdateTableResponse :: Type -> Type #

NFData UpdateTableResponse Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

Methods

rnf :: UpdateTableResponse -> () #

type Rep UpdateTableResponse Source # 
Instance details

Defined in Network.AWS.DynamoDB.UpdateTable

type Rep UpdateTableResponse = D1 (MetaData "UpdateTableResponse" "Network.AWS.DynamoDB.UpdateTable" "amazonka-dynamodb-1.6.1-FTtIhwsA5vX17zvPeEA8Mr" False) (C1 (MetaCons "UpdateTableResponse'" PrefixI True) (S1 (MetaSel (Just "_utrsTableDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe TableDescription)) :*: S1 (MetaSel (Just "_utrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int)))

Response Lenses

utrsTableDescription :: Lens' UpdateTableResponse (Maybe TableDescription) Source #

Represents the properties of the table.

utrsResponseStatus :: Lens' UpdateTableResponse Int Source #

  • - | The response status code.