def add_tags_to_table()

in ddbtools/table.py [0:0]


    def add_tags_to_table(self, table_arn:str, tags:list) -> None:
        """Given a list of {key: value} pairs, apply each as a tag to the table ARN provided."""
        self.dynamodb_client.tag_resource(ResourceArn=table_arn, Tags=tags)