forked from aws/aws-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.json
More file actions
55 lines (55 loc) · 2.04 KB
/
cli.json
File metadata and controls
55 lines (55 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"description": "The AWS Command Line Interface is a unified tool to manage your AWS services.",
"synopsis": "aws [options] <command> <subcommand> [parameters]",
"help_usage": "Use *aws command help* for information on a specific command.",
"options": {
"debug": {
"action": "store_true",
"help": "<p>Turn on debug logging.</p>"
},
"endpoint-url": {
"help": "<p>Override command's default URL with the given URL.</p>"
},
"no-verify-ssl": {
"action": "store_false",
"dest": "verify_ssl",
"help": "<p>By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates. This option overrides the default behavior of verifying SSL certificates.</p>"
},
"no-paginate": {
"action": "store_false",
"help": "<p>Disable automatic pagination.</p>",
"dest": "paginate"
},
"output": {
"choices": [
"json",
"text",
"table"
],
"help": "<p>The formatting style for command output.</p>"
},
"query": {
"help": "<p>A JMESPath query to use in filtering the response data.</p>"
},
"profile": {
"help": "<p>Use a specific profile from your credential file.</p>"
},
"region": {
"help": "<p>The region to use. Overrides config/env settings.</p>"
},
"version": {
"action": "version",
"help": "<p>Display the version of this tool.</p>"
},
"color": {
"choices": ["on", "off", "auto"],
"default": "auto",
"help": "<p>Turn on/off color output.</p>"
},
"no-sign-request": {
"action": "store_false",
"dest": "sign_request",
"help": "<p>Do not sign requests. Credentials will not be loaded if this argument is provided.</p>"
}
}
}