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
69 lines (69 loc) · 2.91 KB
/
cli.json
File metadata and controls
69 lines (69 loc) · 2.91 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"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. Use *aws help topics* to view a list of available help topics. The synopsis for each command shows its parameters and their usage. Optional parameters are shown in square brackets.",
"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>"
},
"ca-bundle": {
"dest": "ca_bundle",
"help": "<p>The CA certificate bundle to use when verifying SSL certificates. Overrides config/env settings.</p>"
},
"cli-read-timeout": {
"dest": "read_timeout",
"type": "int",
"help": "<p>The maximum socket read time in seconds. If the value is set to 0, the socket read will be blocking and not timeout.</p>"
},
"cli-connect-timeout": {
"dest": "connect_timeout",
"type": "int",
"help": "<p>The maximum socket connect time in seconds. If the value is set to 0, the socket connect will be blocking and not timeout.</p>"
}
}
}