Exemplo n.º 1
0
        public void BatchUntagResource()
        {
            #region untagresource-example-1591292811042

            var client   = new AmazonBatchClient();
            var response = client.UntagResource(new UntagResourceRequest
            {
                ResourceArn = "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1",
                TagKeys     = new List <string> {
                    "Stage"
                }
            });


            #endregion
        }