@aws-sdk/client-iam 3.1039.0 → 3.1041.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,6 +11,57 @@ AWS SDK for JavaScript IAM Client for Node.js, Browser and React Native.
11
11
  access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials
12
12
  such as access keys, and permissions that control which Amazon Web Services resources users and
13
13
  applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
14
+ <p>
15
+ <b>Programmatic access to IAM</b>
16
+ </p>
17
+ <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to IAM. The Amazon Web Services
18
+ SDKs consist of libraries and sample code for various programming languages and platforms
19
+ (for example, Java, Ruby, .NET, iOS, and Android). The SDKs provide a convenient way to
20
+ create programmatic access to IAM and Amazon Web Services. For example, the SDKs take care of tasks such as
21
+ cryptographically signing requests, managing errors, and retrying requests automatically.
22
+ For more information, see <a href="http://aws.amazon.com/tools/">Tools to build on
23
+ Amazon Web Services</a>.</p>
24
+ <p>Alternatively, you can also use the IAM Query API to make direct calls to the IAM
25
+ service. For more information about calling the IAM Query API, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html">Making query
26
+ requests</a> in the <i>Identity and Access Management User Guide</i>. IAM supports GET and
27
+ POST requests for all actions. That is, the API does not require you to use GET for some
28
+ actions and POST for others. However, GET requests are subject to the limitation size of a
29
+ URL. Therefore, for operations that require larger sizes, use a POST request.</p>
30
+ <p>
31
+ <b>Signing requests</b>
32
+ </p>
33
+ <p>Requests must be signed using an access key ID and a secret access key. We strongly
34
+ recommend that you do not use your Amazon Web Services account access key ID and secret access key for
35
+ everyday work with IAM. You can use the access key ID and secret access key for an
36
+ IAM user or you can use the Security Token Service to generate temporary security credentials and use
37
+ those to sign requests.</p>
38
+ <p>To sign requests, we recommend that you use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>. If you have an
39
+ existing application that uses Signature Version 2, you do not have to update it to use
40
+ Signature Version 4. However, some operations now require Signature Version 4. The
41
+ documentation for operations that require version 4 indicate this requirement.</p>
42
+ <p>
43
+ <b>Additional resources</b>
44
+ </p>
45
+ <ul>
46
+ <li>
47
+ <p>
48
+ <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services
49
+ security credentials</a>. This topic provides general information about the types of
50
+ credentials used for accessing Amazon Web Services.</p>
51
+ </li>
52
+ <li>
53
+ <p>
54
+ <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html">IAM best
55
+ practices</a>. This topic presents a list of suggestions for using the IAM service
56
+ to help secure your Amazon Web Services resources.</p>
57
+ </li>
58
+ <li>
59
+ <p>
60
+ <a href="https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html">Signing
61
+ Amazon Web Services API requests</a>. This set of topics walk you through the process of signing a
62
+ request using an access key ID and secret access key.</p>
63
+ </li>
64
+ </ul>
14
65
 
15
66
  ## Installing
16
67
 
@@ -1539,6 +1539,57 @@ export interface IAM {
1539
1539
  * access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials
1540
1540
  * such as access keys, and permissions that control which Amazon Web Services resources users and
1541
1541
  * applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
1542
+ * <p>
1543
+ * <b>Programmatic access to IAM</b>
1544
+ * </p>
1545
+ * <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to IAM. The Amazon Web Services
1546
+ * SDKs consist of libraries and sample code for various programming languages and platforms
1547
+ * (for example, Java, Ruby, .NET, iOS, and Android). The SDKs provide a convenient way to
1548
+ * create programmatic access to IAM and Amazon Web Services. For example, the SDKs take care of tasks such as
1549
+ * cryptographically signing requests, managing errors, and retrying requests automatically.
1550
+ * For more information, see <a href="http://aws.amazon.com/tools/">Tools to build on
1551
+ * Amazon Web Services</a>.</p>
1552
+ * <p>Alternatively, you can also use the IAM Query API to make direct calls to the IAM
1553
+ * service. For more information about calling the IAM Query API, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html">Making query
1554
+ * requests</a> in the <i>Identity and Access Management User Guide</i>. IAM supports GET and
1555
+ * POST requests for all actions. That is, the API does not require you to use GET for some
1556
+ * actions and POST for others. However, GET requests are subject to the limitation size of a
1557
+ * URL. Therefore, for operations that require larger sizes, use a POST request.</p>
1558
+ * <p>
1559
+ * <b>Signing requests</b>
1560
+ * </p>
1561
+ * <p>Requests must be signed using an access key ID and a secret access key. We strongly
1562
+ * recommend that you do not use your Amazon Web Services account access key ID and secret access key for
1563
+ * everyday work with IAM. You can use the access key ID and secret access key for an
1564
+ * IAM user or you can use the Security Token Service to generate temporary security credentials and use
1565
+ * those to sign requests.</p>
1566
+ * <p>To sign requests, we recommend that you use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>. If you have an
1567
+ * existing application that uses Signature Version 2, you do not have to update it to use
1568
+ * Signature Version 4. However, some operations now require Signature Version 4. The
1569
+ * documentation for operations that require version 4 indicate this requirement.</p>
1570
+ * <p>
1571
+ * <b>Additional resources</b>
1572
+ * </p>
1573
+ * <ul>
1574
+ * <li>
1575
+ * <p>
1576
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services
1577
+ * security credentials</a>. This topic provides general information about the types of
1578
+ * credentials used for accessing Amazon Web Services.</p>
1579
+ * </li>
1580
+ * <li>
1581
+ * <p>
1582
+ * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html">IAM best
1583
+ * practices</a>. This topic presents a list of suggestions for using the IAM service
1584
+ * to help secure your Amazon Web Services resources.</p>
1585
+ * </li>
1586
+ * <li>
1587
+ * <p>
1588
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html">Signing
1589
+ * Amazon Web Services API requests</a>. This set of topics walk you through the process of signing a
1590
+ * request using an access key ID and secret access key.</p>
1591
+ * </li>
1592
+ * </ul>
1542
1593
  * @public
1543
1594
  */
1544
1595
  export declare class IAM extends IAMClient implements IAM {
@@ -350,6 +350,57 @@ export interface IAMClientResolvedConfig extends IAMClientResolvedConfigType {
350
350
  * access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials
351
351
  * such as access keys, and permissions that control which Amazon Web Services resources users and
352
352
  * applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
353
+ * <p>
354
+ * <b>Programmatic access to IAM</b>
355
+ * </p>
356
+ * <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to IAM. The Amazon Web Services
357
+ * SDKs consist of libraries and sample code for various programming languages and platforms
358
+ * (for example, Java, Ruby, .NET, iOS, and Android). The SDKs provide a convenient way to
359
+ * create programmatic access to IAM and Amazon Web Services. For example, the SDKs take care of tasks such as
360
+ * cryptographically signing requests, managing errors, and retrying requests automatically.
361
+ * For more information, see <a href="http://aws.amazon.com/tools/">Tools to build on
362
+ * Amazon Web Services</a>.</p>
363
+ * <p>Alternatively, you can also use the IAM Query API to make direct calls to the IAM
364
+ * service. For more information about calling the IAM Query API, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html">Making query
365
+ * requests</a> in the <i>Identity and Access Management User Guide</i>. IAM supports GET and
366
+ * POST requests for all actions. That is, the API does not require you to use GET for some
367
+ * actions and POST for others. However, GET requests are subject to the limitation size of a
368
+ * URL. Therefore, for operations that require larger sizes, use a POST request.</p>
369
+ * <p>
370
+ * <b>Signing requests</b>
371
+ * </p>
372
+ * <p>Requests must be signed using an access key ID and a secret access key. We strongly
373
+ * recommend that you do not use your Amazon Web Services account access key ID and secret access key for
374
+ * everyday work with IAM. You can use the access key ID and secret access key for an
375
+ * IAM user or you can use the Security Token Service to generate temporary security credentials and use
376
+ * those to sign requests.</p>
377
+ * <p>To sign requests, we recommend that you use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>. If you have an
378
+ * existing application that uses Signature Version 2, you do not have to update it to use
379
+ * Signature Version 4. However, some operations now require Signature Version 4. The
380
+ * documentation for operations that require version 4 indicate this requirement.</p>
381
+ * <p>
382
+ * <b>Additional resources</b>
383
+ * </p>
384
+ * <ul>
385
+ * <li>
386
+ * <p>
387
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services
388
+ * security credentials</a>. This topic provides general information about the types of
389
+ * credentials used for accessing Amazon Web Services.</p>
390
+ * </li>
391
+ * <li>
392
+ * <p>
393
+ * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html">IAM best
394
+ * practices</a>. This topic presents a list of suggestions for using the IAM service
395
+ * to help secure your Amazon Web Services resources.</p>
396
+ * </li>
397
+ * <li>
398
+ * <p>
399
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html">Signing
400
+ * Amazon Web Services API requests</a>. This set of topics walk you through the process of signing a
401
+ * request using an access key ID and secret access key.</p>
402
+ * </li>
403
+ * </ul>
353
404
  * @public
354
405
  */
355
406
  export declare class IAMClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IAMClientResolvedConfig> {
@@ -4,6 +4,57 @@
4
4
  * access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials
5
5
  * such as access keys, and permissions that control which Amazon Web Services resources users and
6
6
  * applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>
7
+ * <p>
8
+ * <b>Programmatic access to IAM</b>
9
+ * </p>
10
+ * <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to IAM. The Amazon Web Services
11
+ * SDKs consist of libraries and sample code for various programming languages and platforms
12
+ * (for example, Java, Ruby, .NET, iOS, and Android). The SDKs provide a convenient way to
13
+ * create programmatic access to IAM and Amazon Web Services. For example, the SDKs take care of tasks such as
14
+ * cryptographically signing requests, managing errors, and retrying requests automatically.
15
+ * For more information, see <a href="http://aws.amazon.com/tools/">Tools to build on
16
+ * Amazon Web Services</a>.</p>
17
+ * <p>Alternatively, you can also use the IAM Query API to make direct calls to the IAM
18
+ * service. For more information about calling the IAM Query API, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html">Making query
19
+ * requests</a> in the <i>Identity and Access Management User Guide</i>. IAM supports GET and
20
+ * POST requests for all actions. That is, the API does not require you to use GET for some
21
+ * actions and POST for others. However, GET requests are subject to the limitation size of a
22
+ * URL. Therefore, for operations that require larger sizes, use a POST request.</p>
23
+ * <p>
24
+ * <b>Signing requests</b>
25
+ * </p>
26
+ * <p>Requests must be signed using an access key ID and a secret access key. We strongly
27
+ * recommend that you do not use your Amazon Web Services account access key ID and secret access key for
28
+ * everyday work with IAM. You can use the access key ID and secret access key for an
29
+ * IAM user or you can use the Security Token Service to generate temporary security credentials and use
30
+ * those to sign requests.</p>
31
+ * <p>To sign requests, we recommend that you use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>. If you have an
32
+ * existing application that uses Signature Version 2, you do not have to update it to use
33
+ * Signature Version 4. However, some operations now require Signature Version 4. The
34
+ * documentation for operations that require version 4 indicate this requirement.</p>
35
+ * <p>
36
+ * <b>Additional resources</b>
37
+ * </p>
38
+ * <ul>
39
+ * <li>
40
+ * <p>
41
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services
42
+ * security credentials</a>. This topic provides general information about the types of
43
+ * credentials used for accessing Amazon Web Services.</p>
44
+ * </li>
45
+ * <li>
46
+ * <p>
47
+ * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/IAMBestPractices.html">IAM best
48
+ * practices</a>. This topic presents a list of suggestions for using the IAM service
49
+ * to help secure your Amazon Web Services resources.</p>
50
+ * </li>
51
+ * <li>
52
+ * <p>
53
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html">Signing
54
+ * Amazon Web Services API requests</a>. This set of topics walk you through the process of signing a
55
+ * request using an access key ID and secret access key.</p>
56
+ * </li>
57
+ * </ul>
7
58
  *
8
59
  * @packageDocumentation
9
60
  */
@@ -1002,6 +1002,11 @@ export interface CreateOpenIDConnectProviderRequest {
1002
1002
  * <p>For more information about obtaining the OIDC provider thumbprint, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html">Obtaining the
1003
1003
  * thumbprint for an OpenID Connect provider</a> in the <i>IAM user
1004
1004
  * Guide</i>.</p>
1005
+ * <note>
1006
+ * <p>If your OIDC provider's discovery endpoint and JWKS endpoint
1007
+ * (<code>jwks_uri</code>) use different certificates or hosts, include the
1008
+ * thumbprints for both endpoints in this list.</p>
1009
+ * </note>
1005
1010
  * @public
1006
1011
  */
1007
1012
  ThumbprintList?: string[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iam",
3
3
  "description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
4
- "version": "3.1039.0",
4
+ "version": "3.1041.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iam",
@@ -27,17 +27,17 @@
27
27
  "dependencies": {
28
28
  "@aws-crypto/sha256-browser": "5.2.0",
29
29
  "@aws-crypto/sha256-js": "5.2.0",
30
- "@aws-sdk/core": "^3.974.7",
31
- "@aws-sdk/credential-provider-node": "^3.972.38",
30
+ "@aws-sdk/core": "^3.974.8",
31
+ "@aws-sdk/credential-provider-node": "^3.972.39",
32
32
  "@aws-sdk/middleware-host-header": "^3.972.10",
33
33
  "@aws-sdk/middleware-logger": "^3.972.10",
34
34
  "@aws-sdk/middleware-recursion-detection": "^3.972.11",
35
- "@aws-sdk/middleware-user-agent": "^3.972.37",
35
+ "@aws-sdk/middleware-user-agent": "^3.972.38",
36
36
  "@aws-sdk/region-config-resolver": "^3.972.13",
37
37
  "@aws-sdk/types": "^3.973.8",
38
38
  "@aws-sdk/util-endpoints": "^3.996.8",
39
39
  "@aws-sdk/util-user-agent-browser": "^3.972.10",
40
- "@aws-sdk/util-user-agent-node": "^3.973.23",
40
+ "@aws-sdk/util-user-agent-node": "^3.973.24",
41
41
  "@smithy/config-resolver": "^4.4.17",
42
42
  "@smithy/core": "^3.23.17",
43
43
  "@smithy/fetch-http-handler": "^5.3.17",