How to use update_global_table_settings method in localstack

Best Python code snippet using localstack_python

client.py

Source:client.py Github

copy

Full Screen

...78 def update_continuous_backups(self, TableName: str, PointInTimeRecoverySpecification: Dict) -> Dict:79 pass80 def update_global_table(self, GlobalTableName: str, ReplicaUpdates: List) -> Dict:81 pass82 def update_global_table_settings(self, GlobalTableName: str, GlobalTableBillingMode: str = None, GlobalTableProvisionedWriteCapacityUnits: int = None, GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate: Dict = None, GlobalTableGlobalSecondaryIndexSettingsUpdate: List = None, ReplicaSettingsUpdate: List = None) -> Dict:83 pass84 def update_item(self, TableName: str, Key: Dict, AttributeUpdates: Dict = None, Expected: Dict = None, ConditionalOperator: str = None, ReturnValues: str = None, ReturnConsumedCapacity: str = None, ReturnItemCollectionMetrics: str = None, UpdateExpression: str = None, ConditionExpression: str = None, ExpressionAttributeNames: Dict = None, ExpressionAttributeValues: Dict = None) -> Dict:85 pass86 def update_table(self, TableName: str, AttributeDefinitions: List = None, BillingMode: str = None, ProvisionedThroughput: Dict = None, GlobalSecondaryIndexUpdates: List = None, StreamSpecification: Dict = None, SSESpecification: Dict = None) -> Dict:87 pass88 def update_time_to_live(self, TableName: str, TimeToLiveSpecification: Dict) -> Dict:...

Full Screen

Full Screen

client.pyi

Source:client.pyi Github

copy

Full Screen

...114 115 def update_global_table(self, GlobalTableName: str, ReplicaUpdates: List) -> Dict:116 ...117 118 def update_global_table_settings(self, GlobalTableName: str, GlobalTableBillingMode: str = ..., GlobalTableProvisionedWriteCapacityUnits: int = ..., GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate: Dict = ..., GlobalTableGlobalSecondaryIndexSettingsUpdate: List = ..., ReplicaSettingsUpdate: List = ...) -> Dict:119 ...120 121 def update_item(self, TableName: str, Key: Dict, AttributeUpdates: Dict = ..., Expected: Dict = ..., ConditionalOperator: str = ..., ReturnValues: str = ..., ReturnConsumedCapacity: str = ..., ReturnItemCollectionMetrics: str = ..., UpdateExpression: str = ..., ConditionExpression: str = ..., ExpressionAttributeNames: Dict = ..., ExpressionAttributeValues: Dict = ...) -> Dict:122 ...123 124 def update_table(self, TableName: str, AttributeDefinitions: List = ..., BillingMode: str = ..., ProvisionedThroughput: Dict = ..., GlobalSecondaryIndexUpdates: List = ..., StreamSpecification: Dict = ..., SSESpecification: Dict = ...) -> Dict:125 ...126 127 def update_time_to_live(self, TableName: str, TimeToLiveSpecification: Dict) -> Dict:128 ......

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful