-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More updates from the AWS doc team (elb)
- Loading branch information
1 parent
972811a
commit a6a3c2d
Showing
5 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
**To add tags for a load balancer** | ||
|
||
This example adds tags for a load balancer. | ||
|
||
Command:: | ||
|
||
aws elb add-tags --load-balancer-name MyTCPLoadBalancer --tag "Key=project,Value=lima" | ||
|
||
Output:: | ||
|
||
{} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
**To describe the tags assigned to load balancer** | ||
|
||
This example describes the the tags assigned to a load balancer. | ||
|
||
Command:: | ||
|
||
aws elb describe-tags --load-balancer-name MyTCPLoadBalancer | ||
|
||
Output:: | ||
|
||
{ | ||
"TagDescriptions": [ | ||
{ | ||
"Tags": [ | ||
{ | ||
"Value": "digital-media", | ||
"Key": "department" | ||
} | ||
], | ||
"LoadBalancerName": "MyTCPLoadBalancer" | ||
} | ||
] | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
**To remove tags for a load balancer** | ||
|
||
This example removes tags for a load balancer. | ||
|
||
Command:: | ||
|
||
aws elb remove-tags --load-balancer-name MyTCPLoadBalancer --tag "Key=project,Value=lima" | ||
|
||
Output:: | ||
|
||
{} |