Add service ARNs support to the DescribeServices ECS API (#796)
This commit is contained in:
parent
0115267f2a
commit
b5ff3345be
2 changed files with 9 additions and 8 deletions
|
|
@ -359,7 +359,7 @@ def test_describe_services():
|
|||
)
|
||||
response = client.describe_services(
|
||||
cluster='test_ecs_cluster',
|
||||
services=['test_ecs_service1', 'test_ecs_service2']
|
||||
services=['test_ecs_service1', 'arn:aws:ecs:us-east-1:012345678910:service/test_ecs_service2']
|
||||
)
|
||||
len(response['services']).should.equal(2)
|
||||
response['services'][0]['serviceArn'].should.equal('arn:aws:ecs:us-east-1:012345678910:service/test_ecs_service1')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue