You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 9, 2026. It is now read-only.
"description": "Added \"productId\" and \"portfolioId\" to responses from CreateConstraint, UpdateConstraint, ListConstraintsForPortfolio, and DescribeConstraint APIs"
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,10 @@
1
1
# Changelog for AWS SDK for JavaScript
2
-
<!--LATEST=2.642.0-->
2
+
<!--LATEST=2.643.0-->
3
3
<!--ENTRYINSERT-->
4
4
5
+
## 2.643.0
6
+
* feature: ServiceCatalog: Added "productId" and "portfolioId" to responses from CreateConstraint, UpdateConstraint, ListConstraintsForPortfolio, and DescribeConstraint APIs
7
+
5
8
## 2.642.0
6
9
* bugfix: Credentials: Fix types for callback argument in get & refresh methods for Credentials to accept error optionally
7
10
* bugfix: s3: createBucket mutates params argument when endpoint is configured by appending CreateBucketConfigurationon key, this side effect is now fixed
Copy file name to clipboardExpand all lines: apis/servicecatalog-2015-12-10.normal.json
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2256,6 +2256,14 @@
2256
2256
"Owner": {
2257
2257
"shape": "AccountId",
2258
2258
"documentation": "<p>The owner of the constraint.</p>"
2259
+
},
2260
+
"ProductId": {
2261
+
"shape": "Id",
2262
+
"documentation": "<p>The identifier of the product the constraint applies to. Note that a constraint applies to a specific instance of a product within a certain portfolio.</p>"
2263
+
},
2264
+
"PortfolioId": {
2265
+
"shape": "Id",
2266
+
"documentation": "<p>The identifier of the portfolio the product resides in. The constraint applies only to the instance of the product that lives within this portfolio.</p>"
2259
2267
}
2260
2268
},
2261
2269
"documentation": "<p>Information about a constraint.</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.
48
+
* 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 OpenSSL to decode the certificates and inspect individual fields.
* 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.
52
+
* 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 OpenSSL to decode the certificates and inspect individual fields.
* Contains the CNAME record that you add to your DNS database for domain validation. For more information, see Use DNS to Validate Domain Ownership.
310
+
* Contains the CNAME record that you add to your DNS database for domain validation. For more information, see Use DNS to Validate Domain Ownership. Note: The CNAME information that you need does not include the name of your domain. If you include
 your domain name in the DNS database CNAME record, validation fails.
 For example, if the name is "_a79865eb4cd1a6ab990a45779b4e0b96.yourdomain.com", only "_a79865eb4cd1a6ab990a45779b4e0b96" must be used.
311
311
*/
312
312
ResourceRecord?: ResourceRecord;
313
313
/**
@@ -387,11 +387,11 @@ declare namespace ACM {
387
387
}
388
388
exportinterfaceGetCertificateResponse{
389
389
/**
390
-
* String that contains the ACM certificate represented by the ARN specified at input.
390
+
* The ACM-issued certificate corresponding to the ARN specified as input.
391
391
*/
392
392
Certificate?: CertificateBody;
393
393
/**
394
-
* The certificate chain that contains the root certificate issued by the certificate authority (CA).
394
+
* 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.
395
395
*/
396
396
CertificateChain?: CertificateChain;
397
397
}
@@ -528,7 +528,7 @@ declare namespace ACM {
528
528
*/
529
529
ValidationMethod?: ValidationMethod;
530
530
/**
531
-
* 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 DomainName 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 Limits. 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: (63 octets).(63 octets).(63 octets).(61 octets) is legal because the total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63 octets. (64 octets).(63 octets).(63 octets).(61 octets) is not legal because the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first label exceeds 63 octets. (63 octets).(63 octets).(63 octets).(62 octets) is not legal because the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 octets.
531
+
* 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 DomainName 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 Quotas. 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: (63 octets).(63 octets).(63 octets).(61 octets) is legal because the total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63 octets. (64 octets).(63 octets).(63 octets).(61 octets) is not legal because the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first label exceeds 63 octets. (63 octets).(63 octets).(63 octets).(62 octets) is not legal because the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 octets.
* The identifier of the product the constraint applies to. Note that a constraint applies to a specific instance of a product within a certain portfolio.
871
+
*/
872
+
ProductId?: Id;
873
+
/**
874
+
* The identifier of the portfolio the product resides in. The constraint applies only to the instance of the product that lives within this portfolio.
0 commit comments