Exemplo n.º 1
0
        public void BatchListTagsForResource()
        {
            #region listtagsforresource-example-1591293003710

            var client   = new AmazonBatchClient();
            var response = client.ListTagsForResource(new ListTagsForResourceRequest
            {
                ResourceArn = "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1"
            });

            Dictionary <string, string> tags = response.Tags;

            #endregion
        }