Best Python code snippet using localstack_python
client.py
Source:client.py  
...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:...client.pyi
Source:client.pyi  
...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        ......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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
