ECS / Client / describe_daemon
describe_daemon¶
- ECS.Client.describe_daemon(**kwargs)¶
Describes the specified daemon.
See also: AWS API Documentation
Request Syntax
response = client.describe_daemon( daemonArn='string' )
- Parameters:
daemonArn (string) –
[REQUIRED]
The Amazon Resource Name (ARN) of the daemon to describe.
- Return type:
dict
- Returns:
Response Syntax
{ 'daemon': { 'daemonArn': 'string', 'clusterArn': 'string', 'status': 'ACTIVE'|'DELETE_IN_PROGRESS', 'currentRevisions': [ { 'arn': 'string', 'capacityProviders': [ { 'arn': 'string', 'runningCount': 123 }, ], 'totalRunningCount': 123 }, ], 'deploymentArn': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1) } }
Response Structure
(dict) –
daemon (dict) –
The full description of the daemon, including the current revisions, deployment ARN, cluster, and status information.
daemonArn (string) –
The Amazon Resource Name (ARN) of the daemon.
clusterArn (string) –
The Amazon Resource Name (ARN) of the cluster that the daemon is running in.
status (string) –
The status of the daemon.
currentRevisions (list) –
The current daemon revision details, including the running task counts per capacity provider.
(dict) –
Details about a daemon revision, including the running task counts per capacity provider.
arn (string) –
The Amazon Resource Name (ARN) of the daemon revision.
capacityProviders (list) –
The capacity providers associated with this daemon revision.
(dict) –
Information about a capacity provider associated with a daemon revision.
arn (string) –
The Amazon Resource Name (ARN) of the capacity provider.
runningCount (integer) –
The number of daemon tasks running on this capacity provider.
totalRunningCount (integer) –
The total number of daemon tasks running for this revision.
deploymentArn (string) –
The Amazon Resource Name (ARN) of the most recent daemon deployment.
createdAt (datetime) –
The Unix timestamp for the time when the daemon was created.
updatedAt (datetime) –
The Unix timestamp for the time when the daemon was last updated.
Exceptions