Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
awscli /
examples /
acm /
Delete
Unzip
Name
Size
Permission
Date
Action
add-tags-to-certificate.rst
376
B
-rw-r--r--
2017-04-04 16:39
delete-certificate.rst
277
B
-rw-r--r--
2017-04-04 16:39
describe-certificate.rst
2.09
KB
-rw-r--r--
2017-04-04 16:39
get-certificate.rst
4.18
KB
-rw-r--r--
2017-04-04 16:39
list-certificates.rst
1.9
KB
-rw-r--r--
2017-04-04 16:39
list-tags-for-certificate.rst
554
B
-rw-r--r--
2017-04-04 16:39
remove-tags-from-certificate.rst
389
B
-rw-r--r--
2017-04-04 16:39
request-certificate.rst
1.08
KB
-rw-r--r--
2017-04-04 16:39
resend-validation-email.rst
404
B
-rw-r--r--
2017-04-04 16:39
Save
Rename
**To list the ACM certificates for an AWS account** The following ``list-certificates`` command lists the ARNs of the certificates in your account:: aws acm list-certificates The preceding command produces the following output:: { "CertificateSummaryList": [ { "CertificateArn": "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012", "DomainName": "www.example.com" }, { "CertificateArn": "arn:aws:acm:us-east-1:493619779192:certificate/87654321-4321-4321-4321-210987654321", "DomainName": "www.example.net" } ] } You can also filter your output by using the "certificate-statuses" argument. The following command displays certificates that have a PENDING_VALIDATION status:: aws acm list-certificates --certificate-statuses PENDING_VALIDATION Finally, you can decide how many certificates you want to display each time you call ``list-certificates``. For example, to display no more than two certificates at a time, set the ``max-items`` argument to 2 as in the following example:: aws acm list-certificates --max-items 2 Two certificate ARNs and a ``NextToken`` value will be displayed:: { "CertificateSummaryList": [ { "CertificateArn": "arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012", "DomainName": "www.example.com" }, { "CertificateArn": "arn:aws:acm:us-east-1:493619779192:certificate/87654321-4321-4321-4321-210987654321", "DomainName": "www.example.net" } ], "NextToken": "9f4d9f69-275a-41fe-b58e-2b837bd9ba48" } To display the next two certificates in your account, set this ``NextToken`` value in your next call:: aws acm list-certificates --max-items 2 --next-token 9f4d9f69-275a-41fe-b58e-2b837bd9ba48