Skip to content

Commit 4554a82

Browse files
author
AWS
committed
AWS Certificate Manager Update: AWS Certificate Manager documentation updated on API calls ImportCertificate and ListCertificate. Specific updates included input constraints, private key size for import and next token size for list.
1 parent 21bc11b commit 4554a82

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Certificate Manager",
4+
"description": "AWS Certificate Manager documentation updated on API calls ImportCertificate and ListCertificate. Specific updates included input constraints, private key size for import and next token size for list."
5+
}

services/acm/src/main/resources/codegen-resources/service-2.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
{"shape":"RequestInProgressException"},
8787
{"shape":"InvalidArnException"}
8888
],
89-
"documentation":"<p>Retrieves a certificate specified by an ARN and its certificate chain . The chain is an ordered list of certificates that contains the end entity certificate, intermediate certificates of subordinate CAs, and the root certificate in that order. The certificate and certificate chain are base64 encoded. If you want to decode the certificate to see the individual fields, you can use OpenSSL.</p>"
89+
"documentation":"<p>Retrieves an Amazon-issued certificate and its certificate chain. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs. All of the certificates are base64 encoded. You can use <a href=\"https://wiki.openssl.org/index.php/Command_Line_Utilities\">OpenSSL</a> to decode the certificates and inspect individual fields.</p>"
9090
},
9191
"ImportCertificate":{
9292
"name":"ImportCertificate",
@@ -498,7 +498,7 @@
498498
},
499499
"ResourceRecord":{
500500
"shape":"ResourceRecord",
501-
"documentation":"<p>Contains the CNAME record that you add to your DNS database for domain validation. For more information, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html\">Use DNS to Validate Domain Ownership</a>.</p>"
501+
"documentation":"<p>Contains the CNAME record that you add to your DNS database for domain validation. For more information, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html\">Use DNS to Validate Domain Ownership</a>.</p> <p>Note: The CNAME information that you need does not include the name of your domain. If you include&#x2028; your domain name in the DNS database CNAME record, validation fails.&#x2028; For example, if the name is \"_a79865eb4cd1a6ab990a45779b4e0b96.yourdomain.com\", only \"_a79865eb4cd1a6ab990a45779b4e0b96\" must be used.</p>"
502502
},
503503
"ValidationMethod":{
504504
"shape":"ValidationMethod",
@@ -664,11 +664,11 @@
664664
"members":{
665665
"Certificate":{
666666
"shape":"CertificateBody",
667-
"documentation":"<p>String that contains the ACM certificate represented by the ARN specified at input.</p>"
667+
"documentation":"<p>The ACM-issued certificate corresponding to the ARN specified as input.</p>"
668668
},
669669
"CertificateChain":{
670670
"shape":"CertificateChain",
671-
"documentation":"<p>The certificate chain that contains the root certificate issued by the certificate authority (CA).</p>"
671+
"documentation":"<p>Certificates forming the requested certificate's chain of trust. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs. </p>"
672672
}
673673
}
674674
},
@@ -822,7 +822,7 @@
822822
"members":{
823823
"message":{"shape":"String"}
824824
},
825-
"documentation":"<p>An ACM limit has been exceeded.</p>",
825+
"documentation":"<p>An ACM quota has been exceeded.</p>",
826826
"exception":true
827827
},
828828
"ListCertificatesRequest":{
@@ -885,7 +885,7 @@
885885
},
886886
"NextToken":{
887887
"type":"string",
888-
"max":320,
888+
"max":10000,
889889
"min":1,
890890
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*"
891891
},
@@ -904,7 +904,7 @@
904904
},
905905
"PrivateKeyBlob":{
906906
"type":"blob",
907-
"max":524288,
907+
"max":5120,
908908
"min":1,
909909
"sensitive":true
910910
},
@@ -996,7 +996,7 @@
996996
},
997997
"SubjectAlternativeNames":{
998998
"shape":"DomainList",
999-
"documentation":"<p>Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. For example, add the name www.example.net to a certificate for which the <code>DomainName</code> field is www.example.com if users can reach your site by using either name. The maximum number of domain names that you can add to an ACM certificate is 100. However, the initial limit is 10 domain names. If you need more than 10 names, you must request a limit increase. For more information, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html\">Limits</a>.</p> <p> The maximum length of a SAN DNS name is 253 octets. The name is made up of multiple labels separated by periods. No label can be longer than 63 octets. Consider the following examples: </p> <ul> <li> <p> <code>(63 octets).(63 octets).(63 octets).(61 octets)</code> is legal because the total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63 octets.</p> </li> <li> <p> <code>(64 octets).(63 octets).(63 octets).(61 octets)</code> is not legal because the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first label exceeds 63 octets.</p> </li> <li> <p> <code>(63 octets).(63 octets).(63 octets).(62 octets)</code> is not legal because the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 octets.</p> </li> </ul>"
999+
"documentation":"<p>Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. For example, add the name www.example.net to a certificate for which the <code>DomainName</code> field is www.example.com if users can reach your site by using either name. The maximum number of domain names that you can add to an ACM certificate is 100. However, the initial quota is 10 domain names. If you need more than 10 names, you must request a quota increase. For more information, see <a href=\"https://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html\">Quotas</a>.</p> <p> The maximum length of a SAN DNS name is 253 octets. The name is made up of multiple labels separated by periods. No label can be longer than 63 octets. Consider the following examples: </p> <ul> <li> <p> <code>(63 octets).(63 octets).(63 octets).(61 octets)</code> is legal because the total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63 octets.</p> </li> <li> <p> <code>(64 octets).(63 octets).(63 octets).(61 octets)</code> is not legal because the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first label exceeds 63 octets.</p> </li> <li> <p> <code>(63 octets).(63 octets).(63 octets).(62 octets)</code> is not legal because the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 octets.</p> </li> </ul>"
10001000
},
10011001
"IdempotencyToken":{
10021002
"shape":"IdempotencyToken",

0 commit comments

Comments
 (0)