@aws-sdk/client-auditmanager 3.39.0 → 3.43.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.
Files changed (131) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist-cjs/AuditManager.js +90 -0
  3. package/dist-cjs/commands/GetInsightsByAssessmentCommand.js +36 -0
  4. package/dist-cjs/commands/GetInsightsCommand.js +36 -0
  5. package/dist-cjs/commands/ListAssessmentControlInsightsByControlDomainCommand.js +36 -0
  6. package/dist-cjs/commands/ListControlDomainInsightsByAssessmentCommand.js +36 -0
  7. package/dist-cjs/commands/ListControlDomainInsightsCommand.js +36 -0
  8. package/dist-cjs/commands/ListControlInsightsByControlDomainCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/endpoints.js +74 -5
  11. package/dist-cjs/models/models_0.js +110 -2
  12. package/dist-cjs/pagination/ListAssessmentControlInsightsByControlDomainPaginator.js +35 -0
  13. package/dist-cjs/pagination/ListControlDomainInsightsByAssessmentPaginator.js +35 -0
  14. package/dist-cjs/pagination/ListControlDomainInsightsPaginator.js +35 -0
  15. package/dist-cjs/pagination/ListControlInsightsByControlDomainPaginator.js +35 -0
  16. package/dist-cjs/pagination/index.js +4 -0
  17. package/dist-cjs/protocols/Aws_restJson1.js +753 -86
  18. package/dist-cjs/runtimeConfig.browser.js +6 -3
  19. package/dist-cjs/runtimeConfig.js +5 -3
  20. package/dist-es/AuditManager.js +90 -0
  21. package/dist-es/commands/GetInsightsByAssessmentCommand.js +39 -0
  22. package/dist-es/commands/GetInsightsCommand.js +39 -0
  23. package/dist-es/commands/ListAssessmentControlInsightsByControlDomainCommand.js +39 -0
  24. package/dist-es/commands/ListControlDomainInsightsByAssessmentCommand.js +39 -0
  25. package/dist-es/commands/ListControlDomainInsightsCommand.js +39 -0
  26. package/dist-es/commands/ListControlInsightsByControlDomainCommand.js +39 -0
  27. package/dist-es/commands/index.js +6 -0
  28. package/dist-es/endpoints.js +74 -5
  29. package/dist-es/models/models_0.js +72 -0
  30. package/dist-es/pagination/ListAssessmentControlInsightsByControlDomainPaginator.js +74 -0
  31. package/dist-es/pagination/ListControlDomainInsightsByAssessmentPaginator.js +74 -0
  32. package/dist-es/pagination/ListControlDomainInsightsPaginator.js +74 -0
  33. package/dist-es/pagination/ListControlInsightsByControlDomainPaginator.js +74 -0
  34. package/dist-es/pagination/index.js +4 -0
  35. package/dist-es/protocols/Aws_restJson1.js +798 -34
  36. package/dist-es/runtimeConfig.browser.js +3 -2
  37. package/dist-es/runtimeConfig.js +3 -3
  38. package/dist-types/AuditManager.d.ts +69 -2
  39. package/dist-types/AuditManagerClient.d.ts +16 -2
  40. package/dist-types/commands/AssociateAssessmentReportEvidenceFolderCommand.d.ts +1 -1
  41. package/dist-types/commands/BatchAssociateAssessmentReportEvidenceCommand.d.ts +1 -1
  42. package/dist-types/commands/BatchCreateDelegationByAssessmentCommand.d.ts +1 -1
  43. package/dist-types/commands/BatchDeleteDelegationByAssessmentCommand.d.ts +1 -1
  44. package/dist-types/commands/BatchDisassociateAssessmentReportEvidenceCommand.d.ts +1 -1
  45. package/dist-types/commands/BatchImportEvidenceToAssessmentControlCommand.d.ts +1 -1
  46. package/dist-types/commands/CreateAssessmentCommand.d.ts +1 -1
  47. package/dist-types/commands/CreateAssessmentFrameworkCommand.d.ts +1 -1
  48. package/dist-types/commands/CreateAssessmentReportCommand.d.ts +1 -1
  49. package/dist-types/commands/CreateControlCommand.d.ts +1 -1
  50. package/dist-types/commands/DeleteAssessmentCommand.d.ts +1 -1
  51. package/dist-types/commands/DeleteAssessmentFrameworkCommand.d.ts +1 -1
  52. package/dist-types/commands/DeleteAssessmentFrameworkShareCommand.d.ts +1 -1
  53. package/dist-types/commands/DeleteAssessmentReportCommand.d.ts +1 -1
  54. package/dist-types/commands/DeleteControlCommand.d.ts +1 -1
  55. package/dist-types/commands/DeregisterAccountCommand.d.ts +1 -1
  56. package/dist-types/commands/DeregisterOrganizationAdminAccountCommand.d.ts +1 -1
  57. package/dist-types/commands/DisassociateAssessmentReportEvidenceFolderCommand.d.ts +1 -1
  58. package/dist-types/commands/GetAccountStatusCommand.d.ts +1 -1
  59. package/dist-types/commands/GetAssessmentCommand.d.ts +2 -2
  60. package/dist-types/commands/GetAssessmentFrameworkCommand.d.ts +2 -2
  61. package/dist-types/commands/GetAssessmentReportUrlCommand.d.ts +1 -1
  62. package/dist-types/commands/GetChangeLogsCommand.d.ts +1 -1
  63. package/dist-types/commands/GetControlCommand.d.ts +1 -1
  64. package/dist-types/commands/GetDelegationsCommand.d.ts +1 -1
  65. package/dist-types/commands/GetEvidenceByEvidenceFolderCommand.d.ts +1 -1
  66. package/dist-types/commands/GetEvidenceCommand.d.ts +1 -1
  67. package/dist-types/commands/GetEvidenceFolderCommand.d.ts +1 -1
  68. package/dist-types/commands/GetEvidenceFoldersByAssessmentCommand.d.ts +1 -1
  69. package/dist-types/commands/GetEvidenceFoldersByAssessmentControlCommand.d.ts +1 -1
  70. package/dist-types/commands/GetInsightsByAssessmentCommand.d.ts +35 -0
  71. package/dist-types/commands/GetInsightsCommand.d.ts +35 -0
  72. package/dist-types/commands/GetOrganizationAdminAccountCommand.d.ts +1 -1
  73. package/dist-types/commands/GetServicesInScopeCommand.d.ts +1 -1
  74. package/dist-types/commands/GetSettingsCommand.d.ts +1 -1
  75. package/dist-types/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +42 -0
  76. package/dist-types/commands/ListAssessmentFrameworkShareRequestsCommand.d.ts +1 -1
  77. package/dist-types/commands/ListAssessmentFrameworksCommand.d.ts +1 -1
  78. package/dist-types/commands/ListAssessmentReportsCommand.d.ts +1 -1
  79. package/dist-types/commands/ListAssessmentsCommand.d.ts +1 -1
  80. package/dist-types/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +40 -0
  81. package/dist-types/commands/ListControlDomainInsightsCommand.d.ts +41 -0
  82. package/dist-types/commands/ListControlInsightsByControlDomainCommand.d.ts +42 -0
  83. package/dist-types/commands/ListControlsCommand.d.ts +1 -1
  84. package/dist-types/commands/ListKeywordsForDataSourceCommand.d.ts +1 -1
  85. package/dist-types/commands/ListNotificationsCommand.d.ts +1 -1
  86. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  87. package/dist-types/commands/RegisterAccountCommand.d.ts +1 -1
  88. package/dist-types/commands/RegisterOrganizationAdminAccountCommand.d.ts +1 -1
  89. package/dist-types/commands/StartAssessmentFrameworkShareCommand.d.ts +1 -1
  90. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  91. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  92. package/dist-types/commands/UpdateAssessmentCommand.d.ts +1 -1
  93. package/dist-types/commands/UpdateAssessmentControlCommand.d.ts +1 -1
  94. package/dist-types/commands/UpdateAssessmentControlSetStatusCommand.d.ts +1 -1
  95. package/dist-types/commands/UpdateAssessmentFrameworkCommand.d.ts +1 -1
  96. package/dist-types/commands/UpdateAssessmentFrameworkShareCommand.d.ts +1 -1
  97. package/dist-types/commands/UpdateAssessmentStatusCommand.d.ts +1 -1
  98. package/dist-types/commands/UpdateControlCommand.d.ts +1 -1
  99. package/dist-types/commands/UpdateSettingsCommand.d.ts +1 -1
  100. package/dist-types/commands/ValidateAssessmentReportIntegrityCommand.d.ts +1 -1
  101. package/dist-types/commands/index.d.ts +6 -0
  102. package/dist-types/models/models_0.d.ts +521 -30
  103. package/dist-types/pagination/ListAssessmentControlInsightsByControlDomainPaginator.d.ts +4 -0
  104. package/dist-types/pagination/ListControlDomainInsightsByAssessmentPaginator.d.ts +4 -0
  105. package/dist-types/pagination/ListControlDomainInsightsPaginator.d.ts +4 -0
  106. package/dist-types/pagination/ListControlInsightsByControlDomainPaginator.d.ts +4 -0
  107. package/dist-types/pagination/index.d.ts +4 -0
  108. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  110. package/dist-types/runtimeConfig.d.ts +2 -0
  111. package/dist-types/runtimeConfig.native.d.ts +2 -0
  112. package/dist-types/ts3.4/AuditManager.d.ts +30 -0
  113. package/dist-types/ts3.4/AuditManagerClient.d.ts +12 -2
  114. package/dist-types/ts3.4/commands/GetInsightsByAssessmentCommand.d.ts +17 -0
  115. package/dist-types/ts3.4/commands/GetInsightsCommand.d.ts +17 -0
  116. package/dist-types/ts3.4/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +17 -0
  117. package/dist-types/ts3.4/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +17 -0
  118. package/dist-types/ts3.4/commands/ListControlDomainInsightsCommand.d.ts +17 -0
  119. package/dist-types/ts3.4/commands/ListControlInsightsByControlDomainCommand.d.ts +17 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  121. package/dist-types/ts3.4/models/models_0.d.ts +224 -0
  122. package/dist-types/ts3.4/pagination/ListAssessmentControlInsightsByControlDomainPaginator.d.ts +4 -0
  123. package/dist-types/ts3.4/pagination/ListControlDomainInsightsByAssessmentPaginator.d.ts +4 -0
  124. package/dist-types/ts3.4/pagination/ListControlDomainInsightsPaginator.d.ts +4 -0
  125. package/dist-types/ts3.4/pagination/ListControlInsightsByControlDomainPaginator.d.ts +4 -0
  126. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  127. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
  128. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  129. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  130. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  131. package/package.json +23 -23
@@ -1,6 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { Sha256 } from "@aws-crypto/sha256-browser";
4
+ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
4
5
  import { FetchHttpHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
5
6
  import { invalidProvider } from "@aws-sdk/invalid-dependency";
6
7
  import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
@@ -10,7 +11,7 @@ import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
10
11
  import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
11
12
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
12
13
  export var getRuntimeConfig = function (config) {
13
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
14
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
14
15
  var clientSharedValues = getSharedRuntimeConfig(config);
15
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
16
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
16
17
  };
@@ -1,7 +1,7 @@
1
1
  import { __assign } from "tslib";
2
2
  import packageInfo from "../package.json";
3
3
  import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
4
- import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS } from "@aws-sdk/config-resolver";
4
+ import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
5
5
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
6
6
  import { Hash } from "@aws-sdk/hash-node";
7
7
  import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
@@ -14,8 +14,8 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
14
14
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
15
15
  import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
16
16
  export var getRuntimeConfig = function (config) {
17
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
17
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
18
18
  emitWarningIfUnsupportedVersion(process.version);
19
19
  var clientSharedValues = getSharedRuntimeConfig(config);
20
- return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : fromUtf8, utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : toUtf8 });
20
+ return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
21
21
  };
@@ -30,13 +30,19 @@ import { GetEvidenceCommandInput, GetEvidenceCommandOutput } from "./commands/Ge
30
30
  import { GetEvidenceFolderCommandInput, GetEvidenceFolderCommandOutput } from "./commands/GetEvidenceFolderCommand";
31
31
  import { GetEvidenceFoldersByAssessmentCommandInput, GetEvidenceFoldersByAssessmentCommandOutput } from "./commands/GetEvidenceFoldersByAssessmentCommand";
32
32
  import { GetEvidenceFoldersByAssessmentControlCommandInput, GetEvidenceFoldersByAssessmentControlCommandOutput } from "./commands/GetEvidenceFoldersByAssessmentControlCommand";
33
+ import { GetInsightsByAssessmentCommandInput, GetInsightsByAssessmentCommandOutput } from "./commands/GetInsightsByAssessmentCommand";
34
+ import { GetInsightsCommandInput, GetInsightsCommandOutput } from "./commands/GetInsightsCommand";
33
35
  import { GetOrganizationAdminAccountCommandInput, GetOrganizationAdminAccountCommandOutput } from "./commands/GetOrganizationAdminAccountCommand";
34
36
  import { GetServicesInScopeCommandInput, GetServicesInScopeCommandOutput } from "./commands/GetServicesInScopeCommand";
35
37
  import { GetSettingsCommandInput, GetSettingsCommandOutput } from "./commands/GetSettingsCommand";
38
+ import { ListAssessmentControlInsightsByControlDomainCommandInput, ListAssessmentControlInsightsByControlDomainCommandOutput } from "./commands/ListAssessmentControlInsightsByControlDomainCommand";
36
39
  import { ListAssessmentFrameworksCommandInput, ListAssessmentFrameworksCommandOutput } from "./commands/ListAssessmentFrameworksCommand";
37
40
  import { ListAssessmentFrameworkShareRequestsCommandInput, ListAssessmentFrameworkShareRequestsCommandOutput } from "./commands/ListAssessmentFrameworkShareRequestsCommand";
38
41
  import { ListAssessmentReportsCommandInput, ListAssessmentReportsCommandOutput } from "./commands/ListAssessmentReportsCommand";
39
42
  import { ListAssessmentsCommandInput, ListAssessmentsCommandOutput } from "./commands/ListAssessmentsCommand";
43
+ import { ListControlDomainInsightsByAssessmentCommandInput, ListControlDomainInsightsByAssessmentCommandOutput } from "./commands/ListControlDomainInsightsByAssessmentCommand";
44
+ import { ListControlDomainInsightsCommandInput, ListControlDomainInsightsCommandOutput } from "./commands/ListControlDomainInsightsCommand";
45
+ import { ListControlInsightsByControlDomainCommandInput, ListControlInsightsByControlDomainCommandOutput } from "./commands/ListControlInsightsByControlDomainCommand";
40
46
  import { ListControlsCommandInput, ListControlsCommandOutput } from "./commands/ListControlsCommand";
41
47
  import { ListKeywordsForDataSourceCommandInput, ListKeywordsForDataSourceCommandOutput } from "./commands/ListKeywordsForDataSourceCommand";
42
48
  import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "./commands/ListNotificationsCommand";
@@ -223,13 +229,13 @@ export declare class AuditManager extends AuditManagerClient {
223
229
  getAccountStatus(args: GetAccountStatusCommandInput, cb: (err: any, data?: GetAccountStatusCommandOutput) => void): void;
224
230
  getAccountStatus(args: GetAccountStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountStatusCommandOutput) => void): void;
225
231
  /**
226
- * <p> Returns an assessment from Audit Manager. </p>
232
+ * <p>Returns an assessment from Audit Manager. </p>
227
233
  */
228
234
  getAssessment(args: GetAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<GetAssessmentCommandOutput>;
229
235
  getAssessment(args: GetAssessmentCommandInput, cb: (err: any, data?: GetAssessmentCommandOutput) => void): void;
230
236
  getAssessment(args: GetAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssessmentCommandOutput) => void): void;
231
237
  /**
232
- * <p> Returns a framework from Audit Manager. </p>
238
+ * <p>Returns a framework from Audit Manager. </p>
233
239
  */
234
240
  getAssessmentFramework(args: GetAssessmentFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<GetAssessmentFrameworkCommandOutput>;
235
241
  getAssessmentFramework(args: GetAssessmentFrameworkCommandInput, cb: (err: any, data?: GetAssessmentFrameworkCommandOutput) => void): void;
@@ -291,6 +297,18 @@ export declare class AuditManager extends AuditManagerClient {
291
297
  getEvidenceFoldersByAssessmentControl(args: GetEvidenceFoldersByAssessmentControlCommandInput, options?: __HttpHandlerOptions): Promise<GetEvidenceFoldersByAssessmentControlCommandOutput>;
292
298
  getEvidenceFoldersByAssessmentControl(args: GetEvidenceFoldersByAssessmentControlCommandInput, cb: (err: any, data?: GetEvidenceFoldersByAssessmentControlCommandOutput) => void): void;
293
299
  getEvidenceFoldersByAssessmentControl(args: GetEvidenceFoldersByAssessmentControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEvidenceFoldersByAssessmentControlCommandOutput) => void): void;
300
+ /**
301
+ * <p>Gets the latest analytics data for all your current active assessments. </p>
302
+ */
303
+ getInsights(args: GetInsightsCommandInput, options?: __HttpHandlerOptions): Promise<GetInsightsCommandOutput>;
304
+ getInsights(args: GetInsightsCommandInput, cb: (err: any, data?: GetInsightsCommandOutput) => void): void;
305
+ getInsights(args: GetInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightsCommandOutput) => void): void;
306
+ /**
307
+ * <p>Gets the latest analytics data for a specific active assessment. </p>
308
+ */
309
+ getInsightsByAssessment(args: GetInsightsByAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<GetInsightsByAssessmentCommandOutput>;
310
+ getInsightsByAssessment(args: GetInsightsByAssessmentCommandInput, cb: (err: any, data?: GetInsightsByAssessmentCommandOutput) => void): void;
311
+ getInsightsByAssessment(args: GetInsightsByAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightsByAssessmentCommandOutput) => void): void;
294
312
  /**
295
313
  * <p> Returns the name of the delegated Amazon Web Services administrator account for the
296
314
  * organization. </p>
@@ -311,6 +329,19 @@ export declare class AuditManager extends AuditManagerClient {
311
329
  getSettings(args: GetSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetSettingsCommandOutput>;
312
330
  getSettings(args: GetSettingsCommandInput, cb: (err: any, data?: GetSettingsCommandOutput) => void): void;
313
331
  getSettings(args: GetSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSettingsCommandOutput) => void): void;
332
+ /**
333
+ * <p>Lists the latest analytics data for controls within a specific control domain and a
334
+ * specific active assessment.</p>
335
+ * <note>
336
+ * <p>Control insights are listed only if the control belongs to the control domain and assessment
337
+ * that was specified. Moreover, the control must have collected evidence on the
338
+ * <code>lastUpdated</code> date of <code>controlInsightsByAssessment</code>. If neither
339
+ * of these conditions are met, no data is listed for that control. </p>
340
+ * </note>
341
+ */
342
+ listAssessmentControlInsightsByControlDomain(args: ListAssessmentControlInsightsByControlDomainCommandInput, options?: __HttpHandlerOptions): Promise<ListAssessmentControlInsightsByControlDomainCommandOutput>;
343
+ listAssessmentControlInsightsByControlDomain(args: ListAssessmentControlInsightsByControlDomainCommandInput, cb: (err: any, data?: ListAssessmentControlInsightsByControlDomainCommandOutput) => void): void;
344
+ listAssessmentControlInsightsByControlDomain(args: ListAssessmentControlInsightsByControlDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssessmentControlInsightsByControlDomainCommandOutput) => void): void;
314
345
  /**
315
346
  * <p> Returns a list of the frameworks that are available in the Audit Manager
316
347
  * framework library. </p>
@@ -336,6 +367,42 @@ export declare class AuditManager extends AuditManagerClient {
336
367
  listAssessments(args: ListAssessmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssessmentsCommandOutput>;
337
368
  listAssessments(args: ListAssessmentsCommandInput, cb: (err: any, data?: ListAssessmentsCommandOutput) => void): void;
338
369
  listAssessments(args: ListAssessmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssessmentsCommandOutput) => void): void;
370
+ /**
371
+ * <p>Lists the latest analytics data for control domains across all of your active
372
+ * assessments. </p>
373
+ * <note>
374
+ * <p>A control domain is listed only if at least one of the controls within that domain collected
375
+ * evidence on the <code>lastUpdated</code> date of <code>controlDomainInsights</code>. If
376
+ * this condition isn’t met, no data is listed for that control domain.</p>
377
+ * </note>
378
+ */
379
+ listControlDomainInsights(args: ListControlDomainInsightsCommandInput, options?: __HttpHandlerOptions): Promise<ListControlDomainInsightsCommandOutput>;
380
+ listControlDomainInsights(args: ListControlDomainInsightsCommandInput, cb: (err: any, data?: ListControlDomainInsightsCommandOutput) => void): void;
381
+ listControlDomainInsights(args: ListControlDomainInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlDomainInsightsCommandOutput) => void): void;
382
+ /**
383
+ * <p>Lists analytics data for control domains within a specified active assessment.</p>
384
+ * <note>
385
+ * <p>A control domain is listed only if at least one of the controls within that domain collected
386
+ * evidence on the <code>lastUpdated</code> date of <code>controlDomainInsights</code>. If
387
+ * this condition isn’t met, no data is listed for that domain.</p>
388
+ * </note>
389
+ */
390
+ listControlDomainInsightsByAssessment(args: ListControlDomainInsightsByAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<ListControlDomainInsightsByAssessmentCommandOutput>;
391
+ listControlDomainInsightsByAssessment(args: ListControlDomainInsightsByAssessmentCommandInput, cb: (err: any, data?: ListControlDomainInsightsByAssessmentCommandOutput) => void): void;
392
+ listControlDomainInsightsByAssessment(args: ListControlDomainInsightsByAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlDomainInsightsByAssessmentCommandOutput) => void): void;
393
+ /**
394
+ * <p>Lists the latest analytics data for controls within a specific control domain across all
395
+ * active assessments.</p>
396
+ * <note>
397
+ * <p>Control insights are listed only if the control belongs to the control domain that was
398
+ * specified and the control collected evidence on the <code>lastUpdated</code> date of
399
+ * <code>controlInsightsMetadata</code>. If neither of these conditions are met, no data
400
+ * is listed for that control. </p>
401
+ * </note>
402
+ */
403
+ listControlInsightsByControlDomain(args: ListControlInsightsByControlDomainCommandInput, options?: __HttpHandlerOptions): Promise<ListControlInsightsByControlDomainCommandOutput>;
404
+ listControlInsightsByControlDomain(args: ListControlInsightsByControlDomainCommandInput, cb: (err: any, data?: ListControlInsightsByControlDomainCommandOutput) => void): void;
405
+ listControlInsightsByControlDomain(args: ListControlInsightsByControlDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlInsightsByControlDomainCommandOutput) => void): void;
339
406
  /**
340
407
  * <p> Returns a list of controls from Audit Manager. </p>
341
408
  */
@@ -36,13 +36,19 @@ import { GetEvidenceCommandInput, GetEvidenceCommandOutput } from "./commands/Ge
36
36
  import { GetEvidenceFolderCommandInput, GetEvidenceFolderCommandOutput } from "./commands/GetEvidenceFolderCommand";
37
37
  import { GetEvidenceFoldersByAssessmentCommandInput, GetEvidenceFoldersByAssessmentCommandOutput } from "./commands/GetEvidenceFoldersByAssessmentCommand";
38
38
  import { GetEvidenceFoldersByAssessmentControlCommandInput, GetEvidenceFoldersByAssessmentControlCommandOutput } from "./commands/GetEvidenceFoldersByAssessmentControlCommand";
39
+ import { GetInsightsByAssessmentCommandInput, GetInsightsByAssessmentCommandOutput } from "./commands/GetInsightsByAssessmentCommand";
40
+ import { GetInsightsCommandInput, GetInsightsCommandOutput } from "./commands/GetInsightsCommand";
39
41
  import { GetOrganizationAdminAccountCommandInput, GetOrganizationAdminAccountCommandOutput } from "./commands/GetOrganizationAdminAccountCommand";
40
42
  import { GetServicesInScopeCommandInput, GetServicesInScopeCommandOutput } from "./commands/GetServicesInScopeCommand";
41
43
  import { GetSettingsCommandInput, GetSettingsCommandOutput } from "./commands/GetSettingsCommand";
44
+ import { ListAssessmentControlInsightsByControlDomainCommandInput, ListAssessmentControlInsightsByControlDomainCommandOutput } from "./commands/ListAssessmentControlInsightsByControlDomainCommand";
42
45
  import { ListAssessmentFrameworksCommandInput, ListAssessmentFrameworksCommandOutput } from "./commands/ListAssessmentFrameworksCommand";
43
46
  import { ListAssessmentFrameworkShareRequestsCommandInput, ListAssessmentFrameworkShareRequestsCommandOutput } from "./commands/ListAssessmentFrameworkShareRequestsCommand";
44
47
  import { ListAssessmentReportsCommandInput, ListAssessmentReportsCommandOutput } from "./commands/ListAssessmentReportsCommand";
45
48
  import { ListAssessmentsCommandInput, ListAssessmentsCommandOutput } from "./commands/ListAssessmentsCommand";
49
+ import { ListControlDomainInsightsByAssessmentCommandInput, ListControlDomainInsightsByAssessmentCommandOutput } from "./commands/ListControlDomainInsightsByAssessmentCommand";
50
+ import { ListControlDomainInsightsCommandInput, ListControlDomainInsightsCommandOutput } from "./commands/ListControlDomainInsightsCommand";
51
+ import { ListControlInsightsByControlDomainCommandInput, ListControlInsightsByControlDomainCommandOutput } from "./commands/ListControlInsightsByControlDomainCommand";
46
52
  import { ListControlsCommandInput, ListControlsCommandOutput } from "./commands/ListControlsCommand";
47
53
  import { ListKeywordsForDataSourceCommandInput, ListKeywordsForDataSourceCommandOutput } from "./commands/ListKeywordsForDataSourceCommand";
48
54
  import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "./commands/ListNotificationsCommand";
@@ -61,8 +67,8 @@ import { UpdateAssessmentStatusCommandInput, UpdateAssessmentStatusCommandOutput
61
67
  import { UpdateControlCommandInput, UpdateControlCommandOutput } from "./commands/UpdateControlCommand";
62
68
  import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "./commands/UpdateSettingsCommand";
63
69
  import { ValidateAssessmentReportIntegrityCommandInput, ValidateAssessmentReportIntegrityCommandOutput } from "./commands/ValidateAssessmentReportIntegrityCommand";
64
- export declare type ServiceInputTypes = AssociateAssessmentReportEvidenceFolderCommandInput | BatchAssociateAssessmentReportEvidenceCommandInput | BatchCreateDelegationByAssessmentCommandInput | BatchDeleteDelegationByAssessmentCommandInput | BatchDisassociateAssessmentReportEvidenceCommandInput | BatchImportEvidenceToAssessmentControlCommandInput | CreateAssessmentCommandInput | CreateAssessmentFrameworkCommandInput | CreateAssessmentReportCommandInput | CreateControlCommandInput | DeleteAssessmentCommandInput | DeleteAssessmentFrameworkCommandInput | DeleteAssessmentFrameworkShareCommandInput | DeleteAssessmentReportCommandInput | DeleteControlCommandInput | DeregisterAccountCommandInput | DeregisterOrganizationAdminAccountCommandInput | DisassociateAssessmentReportEvidenceFolderCommandInput | GetAccountStatusCommandInput | GetAssessmentCommandInput | GetAssessmentFrameworkCommandInput | GetAssessmentReportUrlCommandInput | GetChangeLogsCommandInput | GetControlCommandInput | GetDelegationsCommandInput | GetEvidenceByEvidenceFolderCommandInput | GetEvidenceCommandInput | GetEvidenceFolderCommandInput | GetEvidenceFoldersByAssessmentCommandInput | GetEvidenceFoldersByAssessmentControlCommandInput | GetOrganizationAdminAccountCommandInput | GetServicesInScopeCommandInput | GetSettingsCommandInput | ListAssessmentFrameworkShareRequestsCommandInput | ListAssessmentFrameworksCommandInput | ListAssessmentReportsCommandInput | ListAssessmentsCommandInput | ListControlsCommandInput | ListKeywordsForDataSourceCommandInput | ListNotificationsCommandInput | ListTagsForResourceCommandInput | RegisterAccountCommandInput | RegisterOrganizationAdminAccountCommandInput | StartAssessmentFrameworkShareCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAssessmentCommandInput | UpdateAssessmentControlCommandInput | UpdateAssessmentControlSetStatusCommandInput | UpdateAssessmentFrameworkCommandInput | UpdateAssessmentFrameworkShareCommandInput | UpdateAssessmentStatusCommandInput | UpdateControlCommandInput | UpdateSettingsCommandInput | ValidateAssessmentReportIntegrityCommandInput;
65
- export declare type ServiceOutputTypes = AssociateAssessmentReportEvidenceFolderCommandOutput | BatchAssociateAssessmentReportEvidenceCommandOutput | BatchCreateDelegationByAssessmentCommandOutput | BatchDeleteDelegationByAssessmentCommandOutput | BatchDisassociateAssessmentReportEvidenceCommandOutput | BatchImportEvidenceToAssessmentControlCommandOutput | CreateAssessmentCommandOutput | CreateAssessmentFrameworkCommandOutput | CreateAssessmentReportCommandOutput | CreateControlCommandOutput | DeleteAssessmentCommandOutput | DeleteAssessmentFrameworkCommandOutput | DeleteAssessmentFrameworkShareCommandOutput | DeleteAssessmentReportCommandOutput | DeleteControlCommandOutput | DeregisterAccountCommandOutput | DeregisterOrganizationAdminAccountCommandOutput | DisassociateAssessmentReportEvidenceFolderCommandOutput | GetAccountStatusCommandOutput | GetAssessmentCommandOutput | GetAssessmentFrameworkCommandOutput | GetAssessmentReportUrlCommandOutput | GetChangeLogsCommandOutput | GetControlCommandOutput | GetDelegationsCommandOutput | GetEvidenceByEvidenceFolderCommandOutput | GetEvidenceCommandOutput | GetEvidenceFolderCommandOutput | GetEvidenceFoldersByAssessmentCommandOutput | GetEvidenceFoldersByAssessmentControlCommandOutput | GetOrganizationAdminAccountCommandOutput | GetServicesInScopeCommandOutput | GetSettingsCommandOutput | ListAssessmentFrameworkShareRequestsCommandOutput | ListAssessmentFrameworksCommandOutput | ListAssessmentReportsCommandOutput | ListAssessmentsCommandOutput | ListControlsCommandOutput | ListKeywordsForDataSourceCommandOutput | ListNotificationsCommandOutput | ListTagsForResourceCommandOutput | RegisterAccountCommandOutput | RegisterOrganizationAdminAccountCommandOutput | StartAssessmentFrameworkShareCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAssessmentCommandOutput | UpdateAssessmentControlCommandOutput | UpdateAssessmentControlSetStatusCommandOutput | UpdateAssessmentFrameworkCommandOutput | UpdateAssessmentFrameworkShareCommandOutput | UpdateAssessmentStatusCommandOutput | UpdateControlCommandOutput | UpdateSettingsCommandOutput | ValidateAssessmentReportIntegrityCommandOutput;
70
+ export declare type ServiceInputTypes = AssociateAssessmentReportEvidenceFolderCommandInput | BatchAssociateAssessmentReportEvidenceCommandInput | BatchCreateDelegationByAssessmentCommandInput | BatchDeleteDelegationByAssessmentCommandInput | BatchDisassociateAssessmentReportEvidenceCommandInput | BatchImportEvidenceToAssessmentControlCommandInput | CreateAssessmentCommandInput | CreateAssessmentFrameworkCommandInput | CreateAssessmentReportCommandInput | CreateControlCommandInput | DeleteAssessmentCommandInput | DeleteAssessmentFrameworkCommandInput | DeleteAssessmentFrameworkShareCommandInput | DeleteAssessmentReportCommandInput | DeleteControlCommandInput | DeregisterAccountCommandInput | DeregisterOrganizationAdminAccountCommandInput | DisassociateAssessmentReportEvidenceFolderCommandInput | GetAccountStatusCommandInput | GetAssessmentCommandInput | GetAssessmentFrameworkCommandInput | GetAssessmentReportUrlCommandInput | GetChangeLogsCommandInput | GetControlCommandInput | GetDelegationsCommandInput | GetEvidenceByEvidenceFolderCommandInput | GetEvidenceCommandInput | GetEvidenceFolderCommandInput | GetEvidenceFoldersByAssessmentCommandInput | GetEvidenceFoldersByAssessmentControlCommandInput | GetInsightsByAssessmentCommandInput | GetInsightsCommandInput | GetOrganizationAdminAccountCommandInput | GetServicesInScopeCommandInput | GetSettingsCommandInput | ListAssessmentControlInsightsByControlDomainCommandInput | ListAssessmentFrameworkShareRequestsCommandInput | ListAssessmentFrameworksCommandInput | ListAssessmentReportsCommandInput | ListAssessmentsCommandInput | ListControlDomainInsightsByAssessmentCommandInput | ListControlDomainInsightsCommandInput | ListControlInsightsByControlDomainCommandInput | ListControlsCommandInput | ListKeywordsForDataSourceCommandInput | ListNotificationsCommandInput | ListTagsForResourceCommandInput | RegisterAccountCommandInput | RegisterOrganizationAdminAccountCommandInput | StartAssessmentFrameworkShareCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAssessmentCommandInput | UpdateAssessmentControlCommandInput | UpdateAssessmentControlSetStatusCommandInput | UpdateAssessmentFrameworkCommandInput | UpdateAssessmentFrameworkShareCommandInput | UpdateAssessmentStatusCommandInput | UpdateControlCommandInput | UpdateSettingsCommandInput | ValidateAssessmentReportIntegrityCommandInput;
71
+ export declare type ServiceOutputTypes = AssociateAssessmentReportEvidenceFolderCommandOutput | BatchAssociateAssessmentReportEvidenceCommandOutput | BatchCreateDelegationByAssessmentCommandOutput | BatchDeleteDelegationByAssessmentCommandOutput | BatchDisassociateAssessmentReportEvidenceCommandOutput | BatchImportEvidenceToAssessmentControlCommandOutput | CreateAssessmentCommandOutput | CreateAssessmentFrameworkCommandOutput | CreateAssessmentReportCommandOutput | CreateControlCommandOutput | DeleteAssessmentCommandOutput | DeleteAssessmentFrameworkCommandOutput | DeleteAssessmentFrameworkShareCommandOutput | DeleteAssessmentReportCommandOutput | DeleteControlCommandOutput | DeregisterAccountCommandOutput | DeregisterOrganizationAdminAccountCommandOutput | DisassociateAssessmentReportEvidenceFolderCommandOutput | GetAccountStatusCommandOutput | GetAssessmentCommandOutput | GetAssessmentFrameworkCommandOutput | GetAssessmentReportUrlCommandOutput | GetChangeLogsCommandOutput | GetControlCommandOutput | GetDelegationsCommandOutput | GetEvidenceByEvidenceFolderCommandOutput | GetEvidenceCommandOutput | GetEvidenceFolderCommandOutput | GetEvidenceFoldersByAssessmentCommandOutput | GetEvidenceFoldersByAssessmentControlCommandOutput | GetInsightsByAssessmentCommandOutput | GetInsightsCommandOutput | GetOrganizationAdminAccountCommandOutput | GetServicesInScopeCommandOutput | GetSettingsCommandOutput | ListAssessmentControlInsightsByControlDomainCommandOutput | ListAssessmentFrameworkShareRequestsCommandOutput | ListAssessmentFrameworksCommandOutput | ListAssessmentReportsCommandOutput | ListAssessmentsCommandOutput | ListControlDomainInsightsByAssessmentCommandOutput | ListControlDomainInsightsCommandOutput | ListControlInsightsByControlDomainCommandOutput | ListControlsCommandOutput | ListKeywordsForDataSourceCommandOutput | ListNotificationsCommandOutput | ListTagsForResourceCommandOutput | RegisterAccountCommandOutput | RegisterOrganizationAdminAccountCommandOutput | StartAssessmentFrameworkShareCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAssessmentCommandOutput | UpdateAssessmentControlCommandOutput | UpdateAssessmentControlSetStatusCommandOutput | UpdateAssessmentFrameworkCommandOutput | UpdateAssessmentFrameworkShareCommandOutput | UpdateAssessmentStatusCommandOutput | UpdateControlCommandOutput | UpdateSettingsCommandOutput | ValidateAssessmentReportIntegrityCommandOutput;
66
72
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
67
73
  /**
68
74
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -131,6 +137,14 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
131
137
  * Optional logger for logging debug/info/warn/error.
132
138
  */
133
139
  logger?: __Logger;
140
+ /**
141
+ * Enables IPv6/IPv4 dualstack endpoint.
142
+ */
143
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
144
+ /**
145
+ * Enables FIPS compatible endpoints.
146
+ */
147
+ useFipsEndpoint?: boolean | __Provider<boolean>;
134
148
  /**
135
149
  * Unique service identifier.
136
150
  * @internal
@@ -21,7 +21,7 @@ export interface AssociateAssessmentReportEvidenceFolderCommandOutput extends As
21
21
  *
22
22
  * @see {@link AssociateAssessmentReportEvidenceFolderCommandInput} for command's `input` shape.
23
23
  * @see {@link AssociateAssessmentReportEvidenceFolderCommandOutput} for command's `response` shape.
24
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class AssociateAssessmentReportEvidenceFolderCommand extends $Command<AssociateAssessmentReportEvidenceFolderCommandInput, AssociateAssessmentReportEvidenceFolderCommandOutput, AuditManagerClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface BatchAssociateAssessmentReportEvidenceCommandOutput extends Bat
21
21
  *
22
22
  * @see {@link BatchAssociateAssessmentReportEvidenceCommandInput} for command's `input` shape.
23
23
  * @see {@link BatchAssociateAssessmentReportEvidenceCommandOutput} for command's `response` shape.
24
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class BatchAssociateAssessmentReportEvidenceCommand extends $Command<BatchAssociateAssessmentReportEvidenceCommandInput, BatchAssociateAssessmentReportEvidenceCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface BatchCreateDelegationByAssessmentCommandOutput extends BatchCre
20
20
  *
21
21
  * @see {@link BatchCreateDelegationByAssessmentCommandInput} for command's `input` shape.
22
22
  * @see {@link BatchCreateDelegationByAssessmentCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class BatchCreateDelegationByAssessmentCommand extends $Command<BatchCreateDelegationByAssessmentCommandInput, BatchCreateDelegationByAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface BatchDeleteDelegationByAssessmentCommandOutput extends BatchDel
20
20
  *
21
21
  * @see {@link BatchDeleteDelegationByAssessmentCommandInput} for command's `input` shape.
22
22
  * @see {@link BatchDeleteDelegationByAssessmentCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class BatchDeleteDelegationByAssessmentCommand extends $Command<BatchDeleteDelegationByAssessmentCommandInput, BatchDeleteDelegationByAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface BatchDisassociateAssessmentReportEvidenceCommandOutput extends
21
21
  *
22
22
  * @see {@link BatchDisassociateAssessmentReportEvidenceCommandInput} for command's `input` shape.
23
23
  * @see {@link BatchDisassociateAssessmentReportEvidenceCommandOutput} for command's `response` shape.
24
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class BatchDisassociateAssessmentReportEvidenceCommand extends $Command<BatchDisassociateAssessmentReportEvidenceCommandInput, BatchDisassociateAssessmentReportEvidenceCommandOutput, AuditManagerClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface BatchImportEvidenceToAssessmentControlCommandOutput extends Bat
21
21
  *
22
22
  * @see {@link BatchImportEvidenceToAssessmentControlCommandInput} for command's `input` shape.
23
23
  * @see {@link BatchImportEvidenceToAssessmentControlCommandOutput} for command's `response` shape.
24
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class BatchImportEvidenceToAssessmentControlCommand extends $Command<BatchImportEvidenceToAssessmentControlCommandInput, BatchImportEvidenceToAssessmentControlCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface CreateAssessmentCommandOutput extends CreateAssessmentResponse,
20
20
  *
21
21
  * @see {@link CreateAssessmentCommandInput} for command's `input` shape.
22
22
  * @see {@link CreateAssessmentCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class CreateAssessmentCommand extends $Command<CreateAssessmentCommandInput, CreateAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface CreateAssessmentFrameworkCommandOutput extends CreateAssessment
20
20
  *
21
21
  * @see {@link CreateAssessmentFrameworkCommandInput} for command's `input` shape.
22
22
  * @see {@link CreateAssessmentFrameworkCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class CreateAssessmentFrameworkCommand extends $Command<CreateAssessmentFrameworkCommandInput, CreateAssessmentFrameworkCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface CreateAssessmentReportCommandOutput extends CreateAssessmentRep
20
20
  *
21
21
  * @see {@link CreateAssessmentReportCommandInput} for command's `input` shape.
22
22
  * @see {@link CreateAssessmentReportCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class CreateAssessmentReportCommand extends $Command<CreateAssessmentReportCommandInput, CreateAssessmentReportCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface CreateControlCommandOutput extends CreateControlResponse, __Met
20
20
  *
21
21
  * @see {@link CreateControlCommandInput} for command's `input` shape.
22
22
  * @see {@link CreateControlCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class CreateControlCommand extends $Command<CreateControlCommandInput, CreateControlCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteAssessmentCommandOutput extends DeleteAssessmentResponse,
20
20
  *
21
21
  * @see {@link DeleteAssessmentCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteAssessmentCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteAssessmentCommand extends $Command<DeleteAssessmentCommandInput, DeleteAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteAssessmentFrameworkCommandOutput extends DeleteAssessment
20
20
  *
21
21
  * @see {@link DeleteAssessmentFrameworkCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteAssessmentFrameworkCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteAssessmentFrameworkCommand extends $Command<DeleteAssessmentFrameworkCommandInput, DeleteAssessmentFrameworkCommandOutput, AuditManagerClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface DeleteAssessmentFrameworkShareCommandOutput extends DeleteAsses
22
22
  *
23
23
  * @see {@link DeleteAssessmentFrameworkShareCommandInput} for command's `input` shape.
24
24
  * @see {@link DeleteAssessmentFrameworkShareCommandOutput} for command's `response` shape.
25
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class DeleteAssessmentFrameworkShareCommand extends $Command<DeleteAssessmentFrameworkShareCommandInput, DeleteAssessmentFrameworkShareCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteAssessmentReportCommandOutput extends DeleteAssessmentRep
20
20
  *
21
21
  * @see {@link DeleteAssessmentReportCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteAssessmentReportCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteAssessmentReportCommand extends $Command<DeleteAssessmentReportCommandInput, DeleteAssessmentReportCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeleteControlCommandOutput extends DeleteControlResponse, __Met
20
20
  *
21
21
  * @see {@link DeleteControlCommandInput} for command's `input` shape.
22
22
  * @see {@link DeleteControlCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeleteControlCommand extends $Command<DeleteControlCommandInput, DeleteControlCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DeregisterAccountCommandOutput extends DeregisterAccountRespons
20
20
  *
21
21
  * @see {@link DeregisterAccountCommandInput} for command's `input` shape.
22
22
  * @see {@link DeregisterAccountCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DeregisterAccountCommand extends $Command<DeregisterAccountCommandInput, DeregisterAccountCommandOutput, AuditManagerClientResolvedConfig> {
@@ -28,7 +28,7 @@ export interface DeregisterOrganizationAdminAccountCommandOutput extends Deregis
28
28
  *
29
29
  * @see {@link DeregisterOrganizationAdminAccountCommandInput} for command's `input` shape.
30
30
  * @see {@link DeregisterOrganizationAdminAccountCommandOutput} for command's `response` shape.
31
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
31
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
32
32
  *
33
33
  */
34
34
  export declare class DeregisterOrganizationAdminAccountCommand extends $Command<DeregisterOrganizationAdminAccountCommandInput, DeregisterOrganizationAdminAccountCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DisassociateAssessmentReportEvidenceFolderCommandOutput extends
20
20
  *
21
21
  * @see {@link DisassociateAssessmentReportEvidenceFolderCommandInput} for command's `input` shape.
22
22
  * @see {@link DisassociateAssessmentReportEvidenceFolderCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DisassociateAssessmentReportEvidenceFolderCommand extends $Command<DisassociateAssessmentReportEvidenceFolderCommandInput, DisassociateAssessmentReportEvidenceFolderCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetAccountStatusCommandOutput extends GetAccountStatusResponse,
20
20
  *
21
21
  * @see {@link GetAccountStatusCommandInput} for command's `input` shape.
22
22
  * @see {@link GetAccountStatusCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetAccountStatusCommand extends $Command<GetAccountStatusCommandInput, GetAccountStatusCommandOutput, AuditManagerClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface GetAssessmentCommandInput extends GetAssessmentRequest {
7
7
  export interface GetAssessmentCommandOutput extends GetAssessmentResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p> Returns an assessment from Audit Manager. </p>
10
+ * <p>Returns an assessment from Audit Manager. </p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -20,7 +20,7 @@ export interface GetAssessmentCommandOutput extends GetAssessmentResponse, __Met
20
20
  *
21
21
  * @see {@link GetAssessmentCommandInput} for command's `input` shape.
22
22
  * @see {@link GetAssessmentCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetAssessmentCommand extends $Command<GetAssessmentCommandInput, GetAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface GetAssessmentFrameworkCommandInput extends GetAssessmentFramewo
7
7
  export interface GetAssessmentFrameworkCommandOutput extends GetAssessmentFrameworkResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p> Returns a framework from Audit Manager. </p>
10
+ * <p>Returns a framework from Audit Manager. </p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -20,7 +20,7 @@ export interface GetAssessmentFrameworkCommandOutput extends GetAssessmentFramew
20
20
  *
21
21
  * @see {@link GetAssessmentFrameworkCommandInput} for command's `input` shape.
22
22
  * @see {@link GetAssessmentFrameworkCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetAssessmentFrameworkCommand extends $Command<GetAssessmentFrameworkCommandInput, GetAssessmentFrameworkCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetAssessmentReportUrlCommandOutput extends GetAssessmentReport
20
20
  *
21
21
  * @see {@link GetAssessmentReportUrlCommandInput} for command's `input` shape.
22
22
  * @see {@link GetAssessmentReportUrlCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetAssessmentReportUrlCommand extends $Command<GetAssessmentReportUrlCommandInput, GetAssessmentReportUrlCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetChangeLogsCommandOutput extends GetChangeLogsResponse, __Met
20
20
  *
21
21
  * @see {@link GetChangeLogsCommandInput} for command's `input` shape.
22
22
  * @see {@link GetChangeLogsCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetChangeLogsCommand extends $Command<GetChangeLogsCommandInput, GetChangeLogsCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetControlCommandOutput extends GetControlResponse, __MetadataB
20
20
  *
21
21
  * @see {@link GetControlCommandInput} for command's `input` shape.
22
22
  * @see {@link GetControlCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetControlCommand extends $Command<GetControlCommandInput, GetControlCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetDelegationsCommandOutput extends GetDelegationsResponse, __M
20
20
  *
21
21
  * @see {@link GetDelegationsCommandInput} for command's `input` shape.
22
22
  * @see {@link GetDelegationsCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetDelegationsCommand extends $Command<GetDelegationsCommandInput, GetDelegationsCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetEvidenceByEvidenceFolderCommandOutput extends GetEvidenceByE
20
20
  *
21
21
  * @see {@link GetEvidenceByEvidenceFolderCommandInput} for command's `input` shape.
22
22
  * @see {@link GetEvidenceByEvidenceFolderCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetEvidenceByEvidenceFolderCommand extends $Command<GetEvidenceByEvidenceFolderCommandInput, GetEvidenceByEvidenceFolderCommandOutput, AuditManagerClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetEvidenceCommandOutput extends GetEvidenceResponse, __Metadat
20
20
  *
21
21
  * @see {@link GetEvidenceCommandInput} for command's `input` shape.
22
22
  * @see {@link GetEvidenceCommandOutput} for command's `response` shape.
23
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetEvidenceCommand extends $Command<GetEvidenceCommandInput, GetEvidenceCommandOutput, AuditManagerClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetEvidenceFolderCommandOutput extends GetEvidenceFolderRespons
21
21
  *
22
22
  * @see {@link GetEvidenceFolderCommandInput} for command's `input` shape.
23
23
  * @see {@link GetEvidenceFolderCommandOutput} for command's `response` shape.
24
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetEvidenceFolderCommand extends $Command<GetEvidenceFolderCommandInput, GetEvidenceFolderCommandOutput, AuditManagerClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetEvidenceFoldersByAssessmentCommandOutput extends GetEvidence
21
21
  *
22
22
  * @see {@link GetEvidenceFoldersByAssessmentCommandInput} for command's `input` shape.
23
23
  * @see {@link GetEvidenceFoldersByAssessmentCommandOutput} for command's `response` shape.
24
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetEvidenceFoldersByAssessmentCommand extends $Command<GetEvidenceFoldersByAssessmentCommandInput, GetEvidenceFoldersByAssessmentCommandOutput, AuditManagerClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetEvidenceFoldersByAssessmentControlCommandOutput extends GetE
21
21
  *
22
22
  * @see {@link GetEvidenceFoldersByAssessmentControlCommandInput} for command's `input` shape.
23
23
  * @see {@link GetEvidenceFoldersByAssessmentControlCommandOutput} for command's `response` shape.
24
- * @see {@link AuditManagerClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link AuditManagerClientResolvedConfig | config} for AuditManagerClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetEvidenceFoldersByAssessmentControlCommand extends $Command<GetEvidenceFoldersByAssessmentControlCommandInput, GetEvidenceFoldersByAssessmentControlCommandOutput, AuditManagerClientResolvedConfig> {