@aws-sdk/client-auditmanager 3.312.0 → 3.316.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/dist-cjs/AuditManager.js +65 -854
- package/dist-cjs/protocols/Aws_restJson1.js +792 -1509
- package/dist-es/AuditManager.js +65 -854
- package/dist-es/protocols/Aws_restJson1.js +708 -1425
- package/dist-types/AuditManager.d.ts +103 -347
- package/dist-types/ts3.4/AuditManager.d.ts +4 -1
- package/package.json +6 -6
|
@@ -61,656 +61,412 @@ import { UpdateAssessmentStatusCommandInput, UpdateAssessmentStatusCommandOutput
|
|
|
61
61
|
import { UpdateControlCommandInput, UpdateControlCommandOutput } from "./commands/UpdateControlCommand";
|
|
62
62
|
import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "./commands/UpdateSettingsCommand";
|
|
63
63
|
import { ValidateAssessmentReportIntegrityCommandInput, ValidateAssessmentReportIntegrityCommandOutput } from "./commands/ValidateAssessmentReportIntegrityCommand";
|
|
64
|
-
|
|
65
|
-
* @public
|
|
66
|
-
* <p>Welcome to the Audit Manager API reference. This guide is for developers who
|
|
67
|
-
* need detailed information about the Audit Manager API operations, data types, and
|
|
68
|
-
* errors. </p>
|
|
69
|
-
* <p>Audit Manager is a service that provides automated evidence collection so that you
|
|
70
|
-
* can continually audit your Amazon Web Services usage. You can use it to assess the
|
|
71
|
-
* effectiveness of your controls, manage risk, and simplify compliance.</p>
|
|
72
|
-
* <p>Audit Manager provides prebuilt frameworks that structure and automate assessments
|
|
73
|
-
* for a given compliance standard. Frameworks include a prebuilt collection of controls with
|
|
74
|
-
* descriptions and testing procedures. These controls are grouped according to the
|
|
75
|
-
* requirements of the specified compliance standard or regulation. You can also customize
|
|
76
|
-
* frameworks and controls to support internal audits with specific requirements. </p>
|
|
77
|
-
* <p>Use the following links to get started with the Audit Manager API:</p>
|
|
78
|
-
* <ul>
|
|
79
|
-
* <li>
|
|
80
|
-
* <p>
|
|
81
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Operations.html">Actions</a>: An
|
|
82
|
-
* alphabetical list of all Audit Manager API operations.</p>
|
|
83
|
-
* </li>
|
|
84
|
-
* <li>
|
|
85
|
-
* <p>
|
|
86
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Audit Manager data
|
|
87
|
-
* types.</p>
|
|
88
|
-
* </li>
|
|
89
|
-
* <li>
|
|
90
|
-
* <p>
|
|
91
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonParameters.html">Common
|
|
92
|
-
* parameters</a>: Parameters that all operations can use.</p>
|
|
93
|
-
* </li>
|
|
94
|
-
* <li>
|
|
95
|
-
* <p>
|
|
96
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonErrors.html">Common errors</a>:
|
|
97
|
-
* Client and server errors that all operations can return.</p>
|
|
98
|
-
* </li>
|
|
99
|
-
* </ul>
|
|
100
|
-
* <p>If you're new to Audit Manager, we recommend that you review the <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/what-is.html">
|
|
101
|
-
* Audit Manager User Guide</a>.</p>
|
|
102
|
-
*/
|
|
103
|
-
export declare class AuditManager extends AuditManagerClient {
|
|
64
|
+
export interface AuditManager {
|
|
104
65
|
/**
|
|
105
|
-
* @
|
|
106
|
-
* <p> Associates an evidence folder to an assessment report in an Audit Manager
|
|
107
|
-
* assessment. </p>
|
|
66
|
+
* @see {@link AssociateAssessmentReportEvidenceFolderCommand}
|
|
108
67
|
*/
|
|
109
68
|
associateAssessmentReportEvidenceFolder(args: AssociateAssessmentReportEvidenceFolderCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAssessmentReportEvidenceFolderCommandOutput>;
|
|
110
69
|
associateAssessmentReportEvidenceFolder(args: AssociateAssessmentReportEvidenceFolderCommandInput, cb: (err: any, data?: AssociateAssessmentReportEvidenceFolderCommandOutput) => void): void;
|
|
111
70
|
associateAssessmentReportEvidenceFolder(args: AssociateAssessmentReportEvidenceFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAssessmentReportEvidenceFolderCommandOutput) => void): void;
|
|
112
71
|
/**
|
|
113
|
-
* @
|
|
114
|
-
* <p> Associates a list of evidence to an assessment report in an Audit Manager
|
|
115
|
-
* assessment. </p>
|
|
72
|
+
* @see {@link BatchAssociateAssessmentReportEvidenceCommand}
|
|
116
73
|
*/
|
|
117
74
|
batchAssociateAssessmentReportEvidence(args: BatchAssociateAssessmentReportEvidenceCommandInput, options?: __HttpHandlerOptions): Promise<BatchAssociateAssessmentReportEvidenceCommandOutput>;
|
|
118
75
|
batchAssociateAssessmentReportEvidence(args: BatchAssociateAssessmentReportEvidenceCommandInput, cb: (err: any, data?: BatchAssociateAssessmentReportEvidenceCommandOutput) => void): void;
|
|
119
76
|
batchAssociateAssessmentReportEvidence(args: BatchAssociateAssessmentReportEvidenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateAssessmentReportEvidenceCommandOutput) => void): void;
|
|
120
77
|
/**
|
|
121
|
-
* @
|
|
122
|
-
* <p> Creates a batch of delegations for an assessment in Audit Manager. </p>
|
|
78
|
+
* @see {@link BatchCreateDelegationByAssessmentCommand}
|
|
123
79
|
*/
|
|
124
80
|
batchCreateDelegationByAssessment(args: BatchCreateDelegationByAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateDelegationByAssessmentCommandOutput>;
|
|
125
81
|
batchCreateDelegationByAssessment(args: BatchCreateDelegationByAssessmentCommandInput, cb: (err: any, data?: BatchCreateDelegationByAssessmentCommandOutput) => void): void;
|
|
126
82
|
batchCreateDelegationByAssessment(args: BatchCreateDelegationByAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateDelegationByAssessmentCommandOutput) => void): void;
|
|
127
83
|
/**
|
|
128
|
-
* @
|
|
129
|
-
* <p> Deletes a batch of delegations for an assessment in Audit Manager. </p>
|
|
84
|
+
* @see {@link BatchDeleteDelegationByAssessmentCommand}
|
|
130
85
|
*/
|
|
131
86
|
batchDeleteDelegationByAssessment(args: BatchDeleteDelegationByAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteDelegationByAssessmentCommandOutput>;
|
|
132
87
|
batchDeleteDelegationByAssessment(args: BatchDeleteDelegationByAssessmentCommandInput, cb: (err: any, data?: BatchDeleteDelegationByAssessmentCommandOutput) => void): void;
|
|
133
88
|
batchDeleteDelegationByAssessment(args: BatchDeleteDelegationByAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteDelegationByAssessmentCommandOutput) => void): void;
|
|
134
89
|
/**
|
|
135
|
-
* @
|
|
136
|
-
* <p> Disassociates a list of evidence from an assessment report in Audit Manager.
|
|
137
|
-
* </p>
|
|
90
|
+
* @see {@link BatchDisassociateAssessmentReportEvidenceCommand}
|
|
138
91
|
*/
|
|
139
92
|
batchDisassociateAssessmentReportEvidence(args: BatchDisassociateAssessmentReportEvidenceCommandInput, options?: __HttpHandlerOptions): Promise<BatchDisassociateAssessmentReportEvidenceCommandOutput>;
|
|
140
93
|
batchDisassociateAssessmentReportEvidence(args: BatchDisassociateAssessmentReportEvidenceCommandInput, cb: (err: any, data?: BatchDisassociateAssessmentReportEvidenceCommandOutput) => void): void;
|
|
141
94
|
batchDisassociateAssessmentReportEvidence(args: BatchDisassociateAssessmentReportEvidenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisassociateAssessmentReportEvidenceCommandOutput) => void): void;
|
|
142
95
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* <p>Uploads one or more pieces of evidence to a control in an Audit Manager assessment.
|
|
145
|
-
* You can upload manual evidence from any Amazon Simple Storage Service (Amazon S3) bucket by
|
|
146
|
-
* specifying the S3 URI of the evidence. </p>
|
|
147
|
-
* <p>You must upload manual evidence to your S3 bucket before you can upload it to your
|
|
148
|
-
* assessment. For instructions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html">CreateBucket</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html">PutObject</a> in
|
|
149
|
-
* the <i>Amazon Simple Storage Service API Reference.</i>
|
|
150
|
-
* </p>
|
|
151
|
-
* <p>The following restrictions apply to this action:</p>
|
|
152
|
-
* <ul>
|
|
153
|
-
* <li>
|
|
154
|
-
* <p>Maximum size of an individual evidence file: 100 MB</p>
|
|
155
|
-
* </li>
|
|
156
|
-
* <li>
|
|
157
|
-
* <p>Number of daily manual evidence uploads per control: 100</p>
|
|
158
|
-
* </li>
|
|
159
|
-
* <li>
|
|
160
|
-
* <p>Supported file formats: See <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/upload-evidence.html#supported-manual-evidence-files">Supported file types for manual evidence</a> in the <i>Audit Manager User Guide</i>
|
|
161
|
-
* </p>
|
|
162
|
-
* </li>
|
|
163
|
-
* </ul>
|
|
164
|
-
* <p>For more information about Audit Manager service restrictions, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/service-quotas.html">Quotas and
|
|
165
|
-
* restrictions for Audit Manager</a>.</p>
|
|
96
|
+
* @see {@link BatchImportEvidenceToAssessmentControlCommand}
|
|
166
97
|
*/
|
|
167
98
|
batchImportEvidenceToAssessmentControl(args: BatchImportEvidenceToAssessmentControlCommandInput, options?: __HttpHandlerOptions): Promise<BatchImportEvidenceToAssessmentControlCommandOutput>;
|
|
168
99
|
batchImportEvidenceToAssessmentControl(args: BatchImportEvidenceToAssessmentControlCommandInput, cb: (err: any, data?: BatchImportEvidenceToAssessmentControlCommandOutput) => void): void;
|
|
169
100
|
batchImportEvidenceToAssessmentControl(args: BatchImportEvidenceToAssessmentControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchImportEvidenceToAssessmentControlCommandOutput) => void): void;
|
|
170
101
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p> Creates an assessment in Audit Manager. </p>
|
|
102
|
+
* @see {@link CreateAssessmentCommand}
|
|
173
103
|
*/
|
|
174
104
|
createAssessment(args: CreateAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssessmentCommandOutput>;
|
|
175
105
|
createAssessment(args: CreateAssessmentCommandInput, cb: (err: any, data?: CreateAssessmentCommandOutput) => void): void;
|
|
176
106
|
createAssessment(args: CreateAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssessmentCommandOutput) => void): void;
|
|
177
107
|
/**
|
|
178
|
-
* @
|
|
179
|
-
* <p> Creates a custom framework in Audit Manager. </p>
|
|
108
|
+
* @see {@link CreateAssessmentFrameworkCommand}
|
|
180
109
|
*/
|
|
181
110
|
createAssessmentFramework(args: CreateAssessmentFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssessmentFrameworkCommandOutput>;
|
|
182
111
|
createAssessmentFramework(args: CreateAssessmentFrameworkCommandInput, cb: (err: any, data?: CreateAssessmentFrameworkCommandOutput) => void): void;
|
|
183
112
|
createAssessmentFramework(args: CreateAssessmentFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssessmentFrameworkCommandOutput) => void): void;
|
|
184
113
|
/**
|
|
185
|
-
* @
|
|
186
|
-
* <p> Creates an assessment report for the specified assessment. </p>
|
|
114
|
+
* @see {@link CreateAssessmentReportCommand}
|
|
187
115
|
*/
|
|
188
116
|
createAssessmentReport(args: CreateAssessmentReportCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssessmentReportCommandOutput>;
|
|
189
117
|
createAssessmentReport(args: CreateAssessmentReportCommandInput, cb: (err: any, data?: CreateAssessmentReportCommandOutput) => void): void;
|
|
190
118
|
createAssessmentReport(args: CreateAssessmentReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssessmentReportCommandOutput) => void): void;
|
|
191
119
|
/**
|
|
192
|
-
* @
|
|
193
|
-
* <p> Creates a new custom control in Audit Manager. </p>
|
|
120
|
+
* @see {@link CreateControlCommand}
|
|
194
121
|
*/
|
|
195
122
|
createControl(args: CreateControlCommandInput, options?: __HttpHandlerOptions): Promise<CreateControlCommandOutput>;
|
|
196
123
|
createControl(args: CreateControlCommandInput, cb: (err: any, data?: CreateControlCommandOutput) => void): void;
|
|
197
124
|
createControl(args: CreateControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateControlCommandOutput) => void): void;
|
|
198
125
|
/**
|
|
199
|
-
* @
|
|
200
|
-
* <p> Deletes an assessment in Audit Manager. </p>
|
|
126
|
+
* @see {@link DeleteAssessmentCommand}
|
|
201
127
|
*/
|
|
202
128
|
deleteAssessment(args: DeleteAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssessmentCommandOutput>;
|
|
203
129
|
deleteAssessment(args: DeleteAssessmentCommandInput, cb: (err: any, data?: DeleteAssessmentCommandOutput) => void): void;
|
|
204
130
|
deleteAssessment(args: DeleteAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssessmentCommandOutput) => void): void;
|
|
205
131
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* <p> Deletes a custom framework in Audit Manager. </p>
|
|
132
|
+
* @see {@link DeleteAssessmentFrameworkCommand}
|
|
208
133
|
*/
|
|
209
134
|
deleteAssessmentFramework(args: DeleteAssessmentFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssessmentFrameworkCommandOutput>;
|
|
210
135
|
deleteAssessmentFramework(args: DeleteAssessmentFrameworkCommandInput, cb: (err: any, data?: DeleteAssessmentFrameworkCommandOutput) => void): void;
|
|
211
136
|
deleteAssessmentFramework(args: DeleteAssessmentFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssessmentFrameworkCommandOutput) => void): void;
|
|
212
137
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p> Deletes a share request for a custom framework in Audit Manager. </p>
|
|
138
|
+
* @see {@link DeleteAssessmentFrameworkShareCommand}
|
|
215
139
|
*/
|
|
216
140
|
deleteAssessmentFrameworkShare(args: DeleteAssessmentFrameworkShareCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssessmentFrameworkShareCommandOutput>;
|
|
217
141
|
deleteAssessmentFrameworkShare(args: DeleteAssessmentFrameworkShareCommandInput, cb: (err: any, data?: DeleteAssessmentFrameworkShareCommandOutput) => void): void;
|
|
218
142
|
deleteAssessmentFrameworkShare(args: DeleteAssessmentFrameworkShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssessmentFrameworkShareCommandOutput) => void): void;
|
|
219
143
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>Deletes an assessment report in Audit Manager. </p>
|
|
222
|
-
* <p>When you run the <code>DeleteAssessmentReport</code> operation, Audit Manager
|
|
223
|
-
* attempts to delete the following data:</p>
|
|
224
|
-
* <ol>
|
|
225
|
-
* <li>
|
|
226
|
-
* <p>The specified assessment report that’s stored in your S3 bucket</p>
|
|
227
|
-
* </li>
|
|
228
|
-
* <li>
|
|
229
|
-
* <p>The associated metadata that’s stored in Audit Manager</p>
|
|
230
|
-
* </li>
|
|
231
|
-
* </ol>
|
|
232
|
-
* <p>If Audit Manager can’t access the assessment report in your S3 bucket, the report
|
|
233
|
-
* isn’t deleted. In this event, the <code>DeleteAssessmentReport</code> operation doesn’t
|
|
234
|
-
* fail. Instead, it proceeds to delete the associated metadata only. You must then delete the
|
|
235
|
-
* assessment report from the S3 bucket yourself. </p>
|
|
236
|
-
* <p>This scenario happens when Audit Manager receives a <code>403 (Forbidden)</code> or
|
|
237
|
-
* <code>404 (Not Found)</code> error from Amazon S3. To avoid this, make sure that
|
|
238
|
-
* your S3 bucket is available, and that you configured the correct permissions for Audit Manager to delete resources in your S3 bucket. For an example permissions policy that
|
|
239
|
-
* you can use, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/security_iam_id-based-policy-examples.html#full-administrator-access-assessment-report-destination">Assessment report destination permissions</a> in the <i>Audit Manager User Guide</i>. For information about the issues that could cause a <code>403
|
|
240
|
-
* (Forbidden)</code> or <code>404 (Not Found</code>) error from Amazon S3, see
|
|
241
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList">List of Error Codes</a> in the <i>Amazon Simple Storage Service API
|
|
242
|
-
* Reference</i>. </p>
|
|
144
|
+
* @see {@link DeleteAssessmentReportCommand}
|
|
243
145
|
*/
|
|
244
146
|
deleteAssessmentReport(args: DeleteAssessmentReportCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssessmentReportCommandOutput>;
|
|
245
147
|
deleteAssessmentReport(args: DeleteAssessmentReportCommandInput, cb: (err: any, data?: DeleteAssessmentReportCommandOutput) => void): void;
|
|
246
148
|
deleteAssessmentReport(args: DeleteAssessmentReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssessmentReportCommandOutput) => void): void;
|
|
247
149
|
/**
|
|
248
|
-
* @
|
|
249
|
-
* <p> Deletes a custom control in Audit Manager. </p>
|
|
150
|
+
* @see {@link DeleteControlCommand}
|
|
250
151
|
*/
|
|
251
152
|
deleteControl(args: DeleteControlCommandInput, options?: __HttpHandlerOptions): Promise<DeleteControlCommandOutput>;
|
|
252
153
|
deleteControl(args: DeleteControlCommandInput, cb: (err: any, data?: DeleteControlCommandOutput) => void): void;
|
|
253
154
|
deleteControl(args: DeleteControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteControlCommandOutput) => void): void;
|
|
254
155
|
/**
|
|
255
|
-
* @
|
|
256
|
-
* <p> Deregisters an account in Audit Manager. </p>
|
|
257
|
-
* <note>
|
|
258
|
-
* <p>Before you deregister, you can use the <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_UpdateSettings.html">UpdateSettings</a> API operation to set your preferred data retention policy. By
|
|
259
|
-
* default, Audit Manager retains your data. If you want to delete your data, you can
|
|
260
|
-
* use the <code>DeregistrationPolicy</code> attribute to request the deletion of your
|
|
261
|
-
* data. </p>
|
|
262
|
-
* <p>For more information about data retention, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/data-protection.html">Data
|
|
263
|
-
* Protection</a> in the <i>Audit Manager User Guide</i>.
|
|
264
|
-
* </p>
|
|
265
|
-
* </note>
|
|
156
|
+
* @see {@link DeregisterAccountCommand}
|
|
266
157
|
*/
|
|
267
158
|
deregisterAccount(args: DeregisterAccountCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterAccountCommandOutput>;
|
|
268
159
|
deregisterAccount(args: DeregisterAccountCommandInput, cb: (err: any, data?: DeregisterAccountCommandOutput) => void): void;
|
|
269
160
|
deregisterAccount(args: DeregisterAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterAccountCommandOutput) => void): void;
|
|
270
161
|
/**
|
|
271
|
-
* @
|
|
272
|
-
* <p>Removes the specified Amazon Web Services account as a delegated administrator for
|
|
273
|
-
* Audit Manager. </p>
|
|
274
|
-
* <p>When you remove a delegated administrator from your Audit Manager settings, you
|
|
275
|
-
* continue to have access to the evidence that you previously collected under that account.
|
|
276
|
-
* This is also the case when you deregister a delegated administrator from Organizations. However, Audit Manager stops collecting and attaching evidence to
|
|
277
|
-
* that delegated administrator account moving forward.</p>
|
|
278
|
-
* <important>
|
|
279
|
-
* <p>Keep in mind the following cleanup task if you use evidence finder:</p>
|
|
280
|
-
* <p>Before you use your management account to remove a delegated administrator, make sure
|
|
281
|
-
* that the current delegated administrator account signs in to Audit Manager and
|
|
282
|
-
* disables evidence finder first. Disabling evidence finder automatically deletes the
|
|
283
|
-
* event data store that was created in their account when they enabled evidence finder. If
|
|
284
|
-
* this task isn’t completed, the event data store remains in their account. In this case,
|
|
285
|
-
* we recommend that the original delegated administrator goes to CloudTrail Lake
|
|
286
|
-
* and manually <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/query-eds-disable-termination.html">deletes the
|
|
287
|
-
* event data store</a>.</p>
|
|
288
|
-
* <p>This cleanup task is necessary to ensure that you don't end up with multiple event
|
|
289
|
-
* data stores. Audit Manager ignores an unused event data store after you remove or
|
|
290
|
-
* change a delegated administrator account. However, the unused event data store continues
|
|
291
|
-
* to incur storage costs from CloudTrail Lake if you don't delete it.</p>
|
|
292
|
-
* </important>
|
|
293
|
-
* <p>When you deregister a delegated administrator account for Audit Manager, the data
|
|
294
|
-
* for that account isn’t deleted. If you want to delete resource data for a delegated
|
|
295
|
-
* administrator account, you must perform that task separately before you deregister the
|
|
296
|
-
* account. Either, you can do this in the Audit Manager console. Or, you can use one of
|
|
297
|
-
* the delete API operations that are provided by Audit Manager. </p>
|
|
298
|
-
* <p>To delete your Audit Manager resource data, see the following instructions: </p>
|
|
299
|
-
* <ul>
|
|
300
|
-
* <li>
|
|
301
|
-
* <p>
|
|
302
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessment.html">DeleteAssessment</a> (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-assessment.html">Deleting an
|
|
303
|
-
* assessment</a> in the <i>Audit Manager User
|
|
304
|
-
* Guide</i>)</p>
|
|
305
|
-
* </li>
|
|
306
|
-
* <li>
|
|
307
|
-
* <p>
|
|
308
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFramework.html">DeleteAssessmentFramework</a> (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-custom-framework.html">Deleting a
|
|
309
|
-
* custom framework</a> in the <i>Audit Manager User
|
|
310
|
-
* Guide</i>)</p>
|
|
311
|
-
* </li>
|
|
312
|
-
* <li>
|
|
313
|
-
* <p>
|
|
314
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentFrameworkShare.html">DeleteAssessmentFrameworkShare</a> (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/deleting-shared-framework-requests.html">Deleting a share request</a> in the <i>Audit Manager User
|
|
315
|
-
* Guide</i>)</p>
|
|
316
|
-
* </li>
|
|
317
|
-
* <li>
|
|
318
|
-
* <p>
|
|
319
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteAssessmentReport.html">DeleteAssessmentReport</a> (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/generate-assessment-report.html#delete-assessment-report-steps">Deleting an assessment report</a> in the <i>Audit Manager User
|
|
320
|
-
* Guide</i>)</p>
|
|
321
|
-
* </li>
|
|
322
|
-
* <li>
|
|
323
|
-
* <p>
|
|
324
|
-
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_DeleteControl.html">DeleteControl</a> (see also: <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/delete-controls.html">Deleting a custom
|
|
325
|
-
* control</a> in the <i>Audit Manager User
|
|
326
|
-
* Guide</i>)</p>
|
|
327
|
-
* </li>
|
|
328
|
-
* </ul>
|
|
329
|
-
* <p>At this time, Audit Manager doesn't provide an option to delete evidence for a
|
|
330
|
-
* specific delegated administrator. Instead, when your management account deregisters Audit Manager, we perform a cleanup for the current delegated administrator account at the
|
|
331
|
-
* time of deregistration.</p>
|
|
162
|
+
* @see {@link DeregisterOrganizationAdminAccountCommand}
|
|
332
163
|
*/
|
|
333
164
|
deregisterOrganizationAdminAccount(args: DeregisterOrganizationAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterOrganizationAdminAccountCommandOutput>;
|
|
334
165
|
deregisterOrganizationAdminAccount(args: DeregisterOrganizationAdminAccountCommandInput, cb: (err: any, data?: DeregisterOrganizationAdminAccountCommandOutput) => void): void;
|
|
335
166
|
deregisterOrganizationAdminAccount(args: DeregisterOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterOrganizationAdminAccountCommandOutput) => void): void;
|
|
336
167
|
/**
|
|
337
|
-
* @
|
|
338
|
-
* <p> Disassociates an evidence folder from the specified assessment report in Audit Manager. </p>
|
|
168
|
+
* @see {@link DisassociateAssessmentReportEvidenceFolderCommand}
|
|
339
169
|
*/
|
|
340
170
|
disassociateAssessmentReportEvidenceFolder(args: DisassociateAssessmentReportEvidenceFolderCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAssessmentReportEvidenceFolderCommandOutput>;
|
|
341
171
|
disassociateAssessmentReportEvidenceFolder(args: DisassociateAssessmentReportEvidenceFolderCommandInput, cb: (err: any, data?: DisassociateAssessmentReportEvidenceFolderCommandOutput) => void): void;
|
|
342
172
|
disassociateAssessmentReportEvidenceFolder(args: DisassociateAssessmentReportEvidenceFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAssessmentReportEvidenceFolderCommandOutput) => void): void;
|
|
343
173
|
/**
|
|
344
|
-
* @
|
|
345
|
-
* <p> Returns the registration status of an account in Audit Manager. </p>
|
|
174
|
+
* @see {@link GetAccountStatusCommand}
|
|
346
175
|
*/
|
|
347
176
|
getAccountStatus(args: GetAccountStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountStatusCommandOutput>;
|
|
348
177
|
getAccountStatus(args: GetAccountStatusCommandInput, cb: (err: any, data?: GetAccountStatusCommandOutput) => void): void;
|
|
349
178
|
getAccountStatus(args: GetAccountStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountStatusCommandOutput) => void): void;
|
|
350
179
|
/**
|
|
351
|
-
* @
|
|
352
|
-
* <p>Returns an assessment from Audit Manager. </p>
|
|
180
|
+
* @see {@link GetAssessmentCommand}
|
|
353
181
|
*/
|
|
354
182
|
getAssessment(args: GetAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<GetAssessmentCommandOutput>;
|
|
355
183
|
getAssessment(args: GetAssessmentCommandInput, cb: (err: any, data?: GetAssessmentCommandOutput) => void): void;
|
|
356
184
|
getAssessment(args: GetAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssessmentCommandOutput) => void): void;
|
|
357
185
|
/**
|
|
358
|
-
* @
|
|
359
|
-
* <p>Returns a framework from Audit Manager. </p>
|
|
186
|
+
* @see {@link GetAssessmentFrameworkCommand}
|
|
360
187
|
*/
|
|
361
188
|
getAssessmentFramework(args: GetAssessmentFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<GetAssessmentFrameworkCommandOutput>;
|
|
362
189
|
getAssessmentFramework(args: GetAssessmentFrameworkCommandInput, cb: (err: any, data?: GetAssessmentFrameworkCommandOutput) => void): void;
|
|
363
190
|
getAssessmentFramework(args: GetAssessmentFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssessmentFrameworkCommandOutput) => void): void;
|
|
364
191
|
/**
|
|
365
|
-
* @
|
|
366
|
-
* <p> Returns the URL of an assessment report in Audit Manager. </p>
|
|
192
|
+
* @see {@link GetAssessmentReportUrlCommand}
|
|
367
193
|
*/
|
|
368
194
|
getAssessmentReportUrl(args: GetAssessmentReportUrlCommandInput, options?: __HttpHandlerOptions): Promise<GetAssessmentReportUrlCommandOutput>;
|
|
369
195
|
getAssessmentReportUrl(args: GetAssessmentReportUrlCommandInput, cb: (err: any, data?: GetAssessmentReportUrlCommandOutput) => void): void;
|
|
370
196
|
getAssessmentReportUrl(args: GetAssessmentReportUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssessmentReportUrlCommandOutput) => void): void;
|
|
371
197
|
/**
|
|
372
|
-
* @
|
|
373
|
-
* <p> Returns a list of changelogs from Audit Manager. </p>
|
|
198
|
+
* @see {@link GetChangeLogsCommand}
|
|
374
199
|
*/
|
|
375
200
|
getChangeLogs(args: GetChangeLogsCommandInput, options?: __HttpHandlerOptions): Promise<GetChangeLogsCommandOutput>;
|
|
376
201
|
getChangeLogs(args: GetChangeLogsCommandInput, cb: (err: any, data?: GetChangeLogsCommandOutput) => void): void;
|
|
377
202
|
getChangeLogs(args: GetChangeLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChangeLogsCommandOutput) => void): void;
|
|
378
203
|
/**
|
|
379
|
-
* @
|
|
380
|
-
* <p> Returns a control from Audit Manager. </p>
|
|
204
|
+
* @see {@link GetControlCommand}
|
|
381
205
|
*/
|
|
382
206
|
getControl(args: GetControlCommandInput, options?: __HttpHandlerOptions): Promise<GetControlCommandOutput>;
|
|
383
207
|
getControl(args: GetControlCommandInput, cb: (err: any, data?: GetControlCommandOutput) => void): void;
|
|
384
208
|
getControl(args: GetControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetControlCommandOutput) => void): void;
|
|
385
209
|
/**
|
|
386
|
-
* @
|
|
387
|
-
* <p> Returns a list of delegations from an audit owner to a delegate. </p>
|
|
210
|
+
* @see {@link GetDelegationsCommand}
|
|
388
211
|
*/
|
|
389
212
|
getDelegations(args: GetDelegationsCommandInput, options?: __HttpHandlerOptions): Promise<GetDelegationsCommandOutput>;
|
|
390
213
|
getDelegations(args: GetDelegationsCommandInput, cb: (err: any, data?: GetDelegationsCommandOutput) => void): void;
|
|
391
214
|
getDelegations(args: GetDelegationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDelegationsCommandOutput) => void): void;
|
|
392
215
|
/**
|
|
393
|
-
* @
|
|
394
|
-
* <p> Returns evidence from Audit Manager. </p>
|
|
216
|
+
* @see {@link GetEvidenceCommand}
|
|
395
217
|
*/
|
|
396
218
|
getEvidence(args: GetEvidenceCommandInput, options?: __HttpHandlerOptions): Promise<GetEvidenceCommandOutput>;
|
|
397
219
|
getEvidence(args: GetEvidenceCommandInput, cb: (err: any, data?: GetEvidenceCommandOutput) => void): void;
|
|
398
220
|
getEvidence(args: GetEvidenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEvidenceCommandOutput) => void): void;
|
|
399
221
|
/**
|
|
400
|
-
* @
|
|
401
|
-
* <p> Returns all evidence from a specified evidence folder in Audit Manager. </p>
|
|
222
|
+
* @see {@link GetEvidenceByEvidenceFolderCommand}
|
|
402
223
|
*/
|
|
403
224
|
getEvidenceByEvidenceFolder(args: GetEvidenceByEvidenceFolderCommandInput, options?: __HttpHandlerOptions): Promise<GetEvidenceByEvidenceFolderCommandOutput>;
|
|
404
225
|
getEvidenceByEvidenceFolder(args: GetEvidenceByEvidenceFolderCommandInput, cb: (err: any, data?: GetEvidenceByEvidenceFolderCommandOutput) => void): void;
|
|
405
226
|
getEvidenceByEvidenceFolder(args: GetEvidenceByEvidenceFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEvidenceByEvidenceFolderCommandOutput) => void): void;
|
|
406
227
|
/**
|
|
407
|
-
* @
|
|
408
|
-
* <p> Returns an evidence folder from the specified assessment in Audit Manager.
|
|
409
|
-
* </p>
|
|
228
|
+
* @see {@link GetEvidenceFolderCommand}
|
|
410
229
|
*/
|
|
411
230
|
getEvidenceFolder(args: GetEvidenceFolderCommandInput, options?: __HttpHandlerOptions): Promise<GetEvidenceFolderCommandOutput>;
|
|
412
231
|
getEvidenceFolder(args: GetEvidenceFolderCommandInput, cb: (err: any, data?: GetEvidenceFolderCommandOutput) => void): void;
|
|
413
232
|
getEvidenceFolder(args: GetEvidenceFolderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEvidenceFolderCommandOutput) => void): void;
|
|
414
233
|
/**
|
|
415
|
-
* @
|
|
416
|
-
* <p> Returns the evidence folders from a specified assessment in Audit Manager.
|
|
417
|
-
* </p>
|
|
234
|
+
* @see {@link GetEvidenceFoldersByAssessmentCommand}
|
|
418
235
|
*/
|
|
419
236
|
getEvidenceFoldersByAssessment(args: GetEvidenceFoldersByAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEvidenceFoldersByAssessmentCommandOutput>;
|
|
420
237
|
getEvidenceFoldersByAssessment(args: GetEvidenceFoldersByAssessmentCommandInput, cb: (err: any, data?: GetEvidenceFoldersByAssessmentCommandOutput) => void): void;
|
|
421
238
|
getEvidenceFoldersByAssessment(args: GetEvidenceFoldersByAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEvidenceFoldersByAssessmentCommandOutput) => void): void;
|
|
422
239
|
/**
|
|
423
|
-
* @
|
|
424
|
-
* <p> Returns a list of evidence folders that are associated with a specified control in an
|
|
425
|
-
* Audit Manager assessment. </p>
|
|
240
|
+
* @see {@link GetEvidenceFoldersByAssessmentControlCommand}
|
|
426
241
|
*/
|
|
427
242
|
getEvidenceFoldersByAssessmentControl(args: GetEvidenceFoldersByAssessmentControlCommandInput, options?: __HttpHandlerOptions): Promise<GetEvidenceFoldersByAssessmentControlCommandOutput>;
|
|
428
243
|
getEvidenceFoldersByAssessmentControl(args: GetEvidenceFoldersByAssessmentControlCommandInput, cb: (err: any, data?: GetEvidenceFoldersByAssessmentControlCommandOutput) => void): void;
|
|
429
244
|
getEvidenceFoldersByAssessmentControl(args: GetEvidenceFoldersByAssessmentControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEvidenceFoldersByAssessmentControlCommandOutput) => void): void;
|
|
430
245
|
/**
|
|
431
|
-
* @
|
|
432
|
-
* <p>Gets the latest analytics data for all your current active assessments. </p>
|
|
246
|
+
* @see {@link GetInsightsCommand}
|
|
433
247
|
*/
|
|
434
248
|
getInsights(args: GetInsightsCommandInput, options?: __HttpHandlerOptions): Promise<GetInsightsCommandOutput>;
|
|
435
249
|
getInsights(args: GetInsightsCommandInput, cb: (err: any, data?: GetInsightsCommandOutput) => void): void;
|
|
436
250
|
getInsights(args: GetInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightsCommandOutput) => void): void;
|
|
437
251
|
/**
|
|
438
|
-
* @
|
|
439
|
-
* <p>Gets the latest analytics data for a specific active assessment. </p>
|
|
252
|
+
* @see {@link GetInsightsByAssessmentCommand}
|
|
440
253
|
*/
|
|
441
254
|
getInsightsByAssessment(args: GetInsightsByAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<GetInsightsByAssessmentCommandOutput>;
|
|
442
255
|
getInsightsByAssessment(args: GetInsightsByAssessmentCommandInput, cb: (err: any, data?: GetInsightsByAssessmentCommandOutput) => void): void;
|
|
443
256
|
getInsightsByAssessment(args: GetInsightsByAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightsByAssessmentCommandOutput) => void): void;
|
|
444
257
|
/**
|
|
445
|
-
* @
|
|
446
|
-
* <p> Returns the name of the delegated Amazon Web Services administrator account for the
|
|
447
|
-
* organization. </p>
|
|
258
|
+
* @see {@link GetOrganizationAdminAccountCommand}
|
|
448
259
|
*/
|
|
449
260
|
getOrganizationAdminAccount(args: GetOrganizationAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetOrganizationAdminAccountCommandOutput>;
|
|
450
261
|
getOrganizationAdminAccount(args: GetOrganizationAdminAccountCommandInput, cb: (err: any, data?: GetOrganizationAdminAccountCommandOutput) => void): void;
|
|
451
262
|
getOrganizationAdminAccount(args: GetOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOrganizationAdminAccountCommandOutput) => void): void;
|
|
452
263
|
/**
|
|
453
|
-
* @
|
|
454
|
-
* <p>Returns a list of all of the Amazon Web Services that you can choose to include
|
|
455
|
-
* in your assessment. When you <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_CreateAssessment.html">create an assessment</a>, specify which of these services you want to include to
|
|
456
|
-
* narrow the assessment's <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Scope.html">scope</a>.</p>
|
|
264
|
+
* @see {@link GetServicesInScopeCommand}
|
|
457
265
|
*/
|
|
458
266
|
getServicesInScope(args: GetServicesInScopeCommandInput, options?: __HttpHandlerOptions): Promise<GetServicesInScopeCommandOutput>;
|
|
459
267
|
getServicesInScope(args: GetServicesInScopeCommandInput, cb: (err: any, data?: GetServicesInScopeCommandOutput) => void): void;
|
|
460
268
|
getServicesInScope(args: GetServicesInScopeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServicesInScopeCommandOutput) => void): void;
|
|
461
269
|
/**
|
|
462
|
-
* @
|
|
463
|
-
* <p> Returns the settings for the specified Amazon Web Services account. </p>
|
|
270
|
+
* @see {@link GetSettingsCommand}
|
|
464
271
|
*/
|
|
465
272
|
getSettings(args: GetSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetSettingsCommandOutput>;
|
|
466
273
|
getSettings(args: GetSettingsCommandInput, cb: (err: any, data?: GetSettingsCommandOutput) => void): void;
|
|
467
274
|
getSettings(args: GetSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSettingsCommandOutput) => void): void;
|
|
468
275
|
/**
|
|
469
|
-
* @
|
|
470
|
-
* <p>Lists the latest analytics data for controls within a specific control domain and a
|
|
471
|
-
* specific active assessment.</p>
|
|
472
|
-
* <note>
|
|
473
|
-
* <p>Control insights are listed only if the control belongs to the control domain and
|
|
474
|
-
* assessment that was specified. Moreover, the control must have collected evidence on the
|
|
475
|
-
* <code>lastUpdated</code> date of <code>controlInsightsByAssessment</code>. If neither
|
|
476
|
-
* of these conditions are met, no data is listed for that control. </p>
|
|
477
|
-
* </note>
|
|
276
|
+
* @see {@link ListAssessmentControlInsightsByControlDomainCommand}
|
|
478
277
|
*/
|
|
479
278
|
listAssessmentControlInsightsByControlDomain(args: ListAssessmentControlInsightsByControlDomainCommandInput, options?: __HttpHandlerOptions): Promise<ListAssessmentControlInsightsByControlDomainCommandOutput>;
|
|
480
279
|
listAssessmentControlInsightsByControlDomain(args: ListAssessmentControlInsightsByControlDomainCommandInput, cb: (err: any, data?: ListAssessmentControlInsightsByControlDomainCommandOutput) => void): void;
|
|
481
280
|
listAssessmentControlInsightsByControlDomain(args: ListAssessmentControlInsightsByControlDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssessmentControlInsightsByControlDomainCommandOutput) => void): void;
|
|
482
281
|
/**
|
|
483
|
-
* @
|
|
484
|
-
* <p> Returns a list of the frameworks that are available in the Audit Manager framework
|
|
485
|
-
* library. </p>
|
|
282
|
+
* @see {@link ListAssessmentFrameworksCommand}
|
|
486
283
|
*/
|
|
487
284
|
listAssessmentFrameworks(args: ListAssessmentFrameworksCommandInput, options?: __HttpHandlerOptions): Promise<ListAssessmentFrameworksCommandOutput>;
|
|
488
285
|
listAssessmentFrameworks(args: ListAssessmentFrameworksCommandInput, cb: (err: any, data?: ListAssessmentFrameworksCommandOutput) => void): void;
|
|
489
286
|
listAssessmentFrameworks(args: ListAssessmentFrameworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssessmentFrameworksCommandOutput) => void): void;
|
|
490
287
|
/**
|
|
491
|
-
* @
|
|
492
|
-
* <p> Returns a list of sent or received share requests for custom frameworks in Audit Manager. </p>
|
|
288
|
+
* @see {@link ListAssessmentFrameworkShareRequestsCommand}
|
|
493
289
|
*/
|
|
494
290
|
listAssessmentFrameworkShareRequests(args: ListAssessmentFrameworkShareRequestsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssessmentFrameworkShareRequestsCommandOutput>;
|
|
495
291
|
listAssessmentFrameworkShareRequests(args: ListAssessmentFrameworkShareRequestsCommandInput, cb: (err: any, data?: ListAssessmentFrameworkShareRequestsCommandOutput) => void): void;
|
|
496
292
|
listAssessmentFrameworkShareRequests(args: ListAssessmentFrameworkShareRequestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssessmentFrameworkShareRequestsCommandOutput) => void): void;
|
|
497
293
|
/**
|
|
498
|
-
* @
|
|
499
|
-
* <p> Returns a list of assessment reports created in Audit Manager. </p>
|
|
294
|
+
* @see {@link ListAssessmentReportsCommand}
|
|
500
295
|
*/
|
|
501
296
|
listAssessmentReports(args: ListAssessmentReportsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssessmentReportsCommandOutput>;
|
|
502
297
|
listAssessmentReports(args: ListAssessmentReportsCommandInput, cb: (err: any, data?: ListAssessmentReportsCommandOutput) => void): void;
|
|
503
298
|
listAssessmentReports(args: ListAssessmentReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssessmentReportsCommandOutput) => void): void;
|
|
504
299
|
/**
|
|
505
|
-
* @
|
|
506
|
-
* <p> Returns a list of current and past assessments from Audit Manager. </p>
|
|
300
|
+
* @see {@link ListAssessmentsCommand}
|
|
507
301
|
*/
|
|
508
302
|
listAssessments(args: ListAssessmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssessmentsCommandOutput>;
|
|
509
303
|
listAssessments(args: ListAssessmentsCommandInput, cb: (err: any, data?: ListAssessmentsCommandOutput) => void): void;
|
|
510
304
|
listAssessments(args: ListAssessmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssessmentsCommandOutput) => void): void;
|
|
511
305
|
/**
|
|
512
|
-
* @
|
|
513
|
-
* <p>Lists the latest analytics data for control domains across all of your active
|
|
514
|
-
* assessments. </p>
|
|
515
|
-
* <note>
|
|
516
|
-
* <p>A control domain is listed only if at least one of the controls within that domain
|
|
517
|
-
* collected evidence on the <code>lastUpdated</code> date of
|
|
518
|
-
* <code>controlDomainInsights</code>. If this condition isn’t met, no data is listed
|
|
519
|
-
* for that control domain.</p>
|
|
520
|
-
* </note>
|
|
306
|
+
* @see {@link ListControlDomainInsightsCommand}
|
|
521
307
|
*/
|
|
522
308
|
listControlDomainInsights(args: ListControlDomainInsightsCommandInput, options?: __HttpHandlerOptions): Promise<ListControlDomainInsightsCommandOutput>;
|
|
523
309
|
listControlDomainInsights(args: ListControlDomainInsightsCommandInput, cb: (err: any, data?: ListControlDomainInsightsCommandOutput) => void): void;
|
|
524
310
|
listControlDomainInsights(args: ListControlDomainInsightsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlDomainInsightsCommandOutput) => void): void;
|
|
525
311
|
/**
|
|
526
|
-
* @
|
|
527
|
-
* <p>Lists analytics data for control domains within a specified active assessment.</p>
|
|
528
|
-
* <note>
|
|
529
|
-
* <p>A control domain is listed only if at least one of the controls within that domain
|
|
530
|
-
* collected evidence on the <code>lastUpdated</code> date of
|
|
531
|
-
* <code>controlDomainInsights</code>. If this condition isn’t met, no data is listed
|
|
532
|
-
* for that domain.</p>
|
|
533
|
-
* </note>
|
|
312
|
+
* @see {@link ListControlDomainInsightsByAssessmentCommand}
|
|
534
313
|
*/
|
|
535
314
|
listControlDomainInsightsByAssessment(args: ListControlDomainInsightsByAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<ListControlDomainInsightsByAssessmentCommandOutput>;
|
|
536
315
|
listControlDomainInsightsByAssessment(args: ListControlDomainInsightsByAssessmentCommandInput, cb: (err: any, data?: ListControlDomainInsightsByAssessmentCommandOutput) => void): void;
|
|
537
316
|
listControlDomainInsightsByAssessment(args: ListControlDomainInsightsByAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlDomainInsightsByAssessmentCommandOutput) => void): void;
|
|
538
317
|
/**
|
|
539
|
-
* @
|
|
540
|
-
* <p>Lists the latest analytics data for controls within a specific control domain across all
|
|
541
|
-
* active assessments.</p>
|
|
542
|
-
* <note>
|
|
543
|
-
* <p>Control insights are listed only if the control belongs to the control domain that
|
|
544
|
-
* was specified and the control collected evidence on the <code>lastUpdated</code> date of
|
|
545
|
-
* <code>controlInsightsMetadata</code>. If neither of these conditions are met, no data
|
|
546
|
-
* is listed for that control. </p>
|
|
547
|
-
* </note>
|
|
318
|
+
* @see {@link ListControlInsightsByControlDomainCommand}
|
|
548
319
|
*/
|
|
549
320
|
listControlInsightsByControlDomain(args: ListControlInsightsByControlDomainCommandInput, options?: __HttpHandlerOptions): Promise<ListControlInsightsByControlDomainCommandOutput>;
|
|
550
321
|
listControlInsightsByControlDomain(args: ListControlInsightsByControlDomainCommandInput, cb: (err: any, data?: ListControlInsightsByControlDomainCommandOutput) => void): void;
|
|
551
322
|
listControlInsightsByControlDomain(args: ListControlInsightsByControlDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlInsightsByControlDomainCommandOutput) => void): void;
|
|
552
323
|
/**
|
|
553
|
-
* @
|
|
554
|
-
* <p> Returns a list of controls from Audit Manager. </p>
|
|
324
|
+
* @see {@link ListControlsCommand}
|
|
555
325
|
*/
|
|
556
326
|
listControls(args: ListControlsCommandInput, options?: __HttpHandlerOptions): Promise<ListControlsCommandOutput>;
|
|
557
327
|
listControls(args: ListControlsCommandInput, cb: (err: any, data?: ListControlsCommandOutput) => void): void;
|
|
558
328
|
listControls(args: ListControlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListControlsCommandOutput) => void): void;
|
|
559
329
|
/**
|
|
560
|
-
* @
|
|
561
|
-
* <p> Returns a list of keywords that are pre-mapped to the specified control data source.
|
|
562
|
-
* </p>
|
|
330
|
+
* @see {@link ListKeywordsForDataSourceCommand}
|
|
563
331
|
*/
|
|
564
332
|
listKeywordsForDataSource(args: ListKeywordsForDataSourceCommandInput, options?: __HttpHandlerOptions): Promise<ListKeywordsForDataSourceCommandOutput>;
|
|
565
333
|
listKeywordsForDataSource(args: ListKeywordsForDataSourceCommandInput, cb: (err: any, data?: ListKeywordsForDataSourceCommandOutput) => void): void;
|
|
566
334
|
listKeywordsForDataSource(args: ListKeywordsForDataSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKeywordsForDataSourceCommandOutput) => void): void;
|
|
567
335
|
/**
|
|
568
|
-
* @
|
|
569
|
-
* <p> Returns a list of all Audit Manager notifications. </p>
|
|
336
|
+
* @see {@link ListNotificationsCommand}
|
|
570
337
|
*/
|
|
571
338
|
listNotifications(args: ListNotificationsCommandInput, options?: __HttpHandlerOptions): Promise<ListNotificationsCommandOutput>;
|
|
572
339
|
listNotifications(args: ListNotificationsCommandInput, cb: (err: any, data?: ListNotificationsCommandOutput) => void): void;
|
|
573
340
|
listNotifications(args: ListNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotificationsCommandOutput) => void): void;
|
|
574
341
|
/**
|
|
575
|
-
* @
|
|
576
|
-
* <p> Returns a list of tags for the specified resource in Audit Manager. </p>
|
|
342
|
+
* @see {@link ListTagsForResourceCommand}
|
|
577
343
|
*/
|
|
578
344
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
579
345
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
580
346
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
581
347
|
/**
|
|
582
|
-
* @
|
|
583
|
-
* <p> Enables Audit Manager for the specified Amazon Web Services account. </p>
|
|
348
|
+
* @see {@link RegisterAccountCommand}
|
|
584
349
|
*/
|
|
585
350
|
registerAccount(args: RegisterAccountCommandInput, options?: __HttpHandlerOptions): Promise<RegisterAccountCommandOutput>;
|
|
586
351
|
registerAccount(args: RegisterAccountCommandInput, cb: (err: any, data?: RegisterAccountCommandOutput) => void): void;
|
|
587
352
|
registerAccount(args: RegisterAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterAccountCommandOutput) => void): void;
|
|
588
353
|
/**
|
|
589
|
-
* @
|
|
590
|
-
* <p> Enables an Amazon Web Services account within the organization as the delegated
|
|
591
|
-
* administrator for Audit Manager. </p>
|
|
354
|
+
* @see {@link RegisterOrganizationAdminAccountCommand}
|
|
592
355
|
*/
|
|
593
356
|
registerOrganizationAdminAccount(args: RegisterOrganizationAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<RegisterOrganizationAdminAccountCommandOutput>;
|
|
594
357
|
registerOrganizationAdminAccount(args: RegisterOrganizationAdminAccountCommandInput, cb: (err: any, data?: RegisterOrganizationAdminAccountCommandOutput) => void): void;
|
|
595
358
|
registerOrganizationAdminAccount(args: RegisterOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterOrganizationAdminAccountCommandOutput) => void): void;
|
|
596
359
|
/**
|
|
597
|
-
* @
|
|
598
|
-
* <p> Creates a share request for a custom framework in Audit Manager. </p>
|
|
599
|
-
* <p>The share request specifies a recipient and notifies them that a custom framework is
|
|
600
|
-
* available. Recipients have 120 days to accept or decline the request. If no action is
|
|
601
|
-
* taken, the share request expires.</p>
|
|
602
|
-
* <p>When you create a share request, Audit Manager stores a snapshot of your custom
|
|
603
|
-
* framework in the US East (N. Virginia) Amazon Web Services Region. Audit Manager also
|
|
604
|
-
* stores a backup of the same snapshot in the US West (Oregon) Amazon Web Services Region.</p>
|
|
605
|
-
* <p>Audit Manager deletes the snapshot and the backup snapshot when one of the following
|
|
606
|
-
* events occurs:</p>
|
|
607
|
-
* <ul>
|
|
608
|
-
* <li>
|
|
609
|
-
* <p>The sender revokes the share request.</p>
|
|
610
|
-
* </li>
|
|
611
|
-
* <li>
|
|
612
|
-
* <p>The recipient declines the share request.</p>
|
|
613
|
-
* </li>
|
|
614
|
-
* <li>
|
|
615
|
-
* <p>The recipient encounters an error and doesn't successfully accept the share
|
|
616
|
-
* request.</p>
|
|
617
|
-
* </li>
|
|
618
|
-
* <li>
|
|
619
|
-
* <p>The share request expires before the recipient responds to the request.</p>
|
|
620
|
-
* </li>
|
|
621
|
-
* </ul>
|
|
622
|
-
* <p>When a sender <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/framework-sharing.html#framework-sharing-resend">resends a share request</a>, the snapshot is replaced with an updated version that
|
|
623
|
-
* corresponds with the latest version of the custom framework. </p>
|
|
624
|
-
* <p>When a recipient accepts a share request, the snapshot is replicated into their Amazon Web Services account under the Amazon Web Services Region that was specified in the share
|
|
625
|
-
* request. </p>
|
|
626
|
-
* <important>
|
|
627
|
-
* <p>When you invoke the <code>StartAssessmentFrameworkShare</code> API, you are about to
|
|
628
|
-
* share a custom framework with another Amazon Web Services account. You may not share a
|
|
629
|
-
* custom framework that is derived from a standard framework if the standard framework is
|
|
630
|
-
* designated as not eligible for sharing by Amazon Web Services, unless you have obtained
|
|
631
|
-
* permission to do so from the owner of the standard framework. To learn more about which
|
|
632
|
-
* standard frameworks are eligible for sharing, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/share-custom-framework-concepts-and-terminology.html#eligibility">Framework sharing eligibility</a> in the <i>Audit Manager User
|
|
633
|
-
* Guide</i>.</p>
|
|
634
|
-
* </important>
|
|
360
|
+
* @see {@link StartAssessmentFrameworkShareCommand}
|
|
635
361
|
*/
|
|
636
362
|
startAssessmentFrameworkShare(args: StartAssessmentFrameworkShareCommandInput, options?: __HttpHandlerOptions): Promise<StartAssessmentFrameworkShareCommandOutput>;
|
|
637
363
|
startAssessmentFrameworkShare(args: StartAssessmentFrameworkShareCommandInput, cb: (err: any, data?: StartAssessmentFrameworkShareCommandOutput) => void): void;
|
|
638
364
|
startAssessmentFrameworkShare(args: StartAssessmentFrameworkShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAssessmentFrameworkShareCommandOutput) => void): void;
|
|
639
365
|
/**
|
|
640
|
-
* @
|
|
641
|
-
* <p> Tags the specified resource in Audit Manager. </p>
|
|
366
|
+
* @see {@link TagResourceCommand}
|
|
642
367
|
*/
|
|
643
368
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
644
369
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
645
370
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
646
371
|
/**
|
|
647
|
-
* @
|
|
648
|
-
* <p> Removes a tag from a resource in Audit Manager. </p>
|
|
372
|
+
* @see {@link UntagResourceCommand}
|
|
649
373
|
*/
|
|
650
374
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
651
375
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
652
376
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
653
377
|
/**
|
|
654
|
-
* @
|
|
655
|
-
* <p> Edits an Audit Manager assessment. </p>
|
|
378
|
+
* @see {@link UpdateAssessmentCommand}
|
|
656
379
|
*/
|
|
657
380
|
updateAssessment(args: UpdateAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssessmentCommandOutput>;
|
|
658
381
|
updateAssessment(args: UpdateAssessmentCommandInput, cb: (err: any, data?: UpdateAssessmentCommandOutput) => void): void;
|
|
659
382
|
updateAssessment(args: UpdateAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssessmentCommandOutput) => void): void;
|
|
660
383
|
/**
|
|
661
|
-
* @
|
|
662
|
-
* <p> Updates a control within an assessment in Audit Manager. </p>
|
|
384
|
+
* @see {@link UpdateAssessmentControlCommand}
|
|
663
385
|
*/
|
|
664
386
|
updateAssessmentControl(args: UpdateAssessmentControlCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssessmentControlCommandOutput>;
|
|
665
387
|
updateAssessmentControl(args: UpdateAssessmentControlCommandInput, cb: (err: any, data?: UpdateAssessmentControlCommandOutput) => void): void;
|
|
666
388
|
updateAssessmentControl(args: UpdateAssessmentControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssessmentControlCommandOutput) => void): void;
|
|
667
389
|
/**
|
|
668
|
-
* @
|
|
669
|
-
* <p> Updates the status of a control set in an Audit Manager assessment. </p>
|
|
390
|
+
* @see {@link UpdateAssessmentControlSetStatusCommand}
|
|
670
391
|
*/
|
|
671
392
|
updateAssessmentControlSetStatus(args: UpdateAssessmentControlSetStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssessmentControlSetStatusCommandOutput>;
|
|
672
393
|
updateAssessmentControlSetStatus(args: UpdateAssessmentControlSetStatusCommandInput, cb: (err: any, data?: UpdateAssessmentControlSetStatusCommandOutput) => void): void;
|
|
673
394
|
updateAssessmentControlSetStatus(args: UpdateAssessmentControlSetStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssessmentControlSetStatusCommandOutput) => void): void;
|
|
674
395
|
/**
|
|
675
|
-
* @
|
|
676
|
-
* <p> Updates a custom framework in Audit Manager. </p>
|
|
396
|
+
* @see {@link UpdateAssessmentFrameworkCommand}
|
|
677
397
|
*/
|
|
678
398
|
updateAssessmentFramework(args: UpdateAssessmentFrameworkCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssessmentFrameworkCommandOutput>;
|
|
679
399
|
updateAssessmentFramework(args: UpdateAssessmentFrameworkCommandInput, cb: (err: any, data?: UpdateAssessmentFrameworkCommandOutput) => void): void;
|
|
680
400
|
updateAssessmentFramework(args: UpdateAssessmentFrameworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssessmentFrameworkCommandOutput) => void): void;
|
|
681
401
|
/**
|
|
682
|
-
* @
|
|
683
|
-
* <p> Updates a share request for a custom framework in Audit Manager. </p>
|
|
402
|
+
* @see {@link UpdateAssessmentFrameworkShareCommand}
|
|
684
403
|
*/
|
|
685
404
|
updateAssessmentFrameworkShare(args: UpdateAssessmentFrameworkShareCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssessmentFrameworkShareCommandOutput>;
|
|
686
405
|
updateAssessmentFrameworkShare(args: UpdateAssessmentFrameworkShareCommandInput, cb: (err: any, data?: UpdateAssessmentFrameworkShareCommandOutput) => void): void;
|
|
687
406
|
updateAssessmentFrameworkShare(args: UpdateAssessmentFrameworkShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssessmentFrameworkShareCommandOutput) => void): void;
|
|
688
407
|
/**
|
|
689
|
-
* @
|
|
690
|
-
* <p> Updates the status of an assessment in Audit Manager. </p>
|
|
408
|
+
* @see {@link UpdateAssessmentStatusCommand}
|
|
691
409
|
*/
|
|
692
410
|
updateAssessmentStatus(args: UpdateAssessmentStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssessmentStatusCommandOutput>;
|
|
693
411
|
updateAssessmentStatus(args: UpdateAssessmentStatusCommandInput, cb: (err: any, data?: UpdateAssessmentStatusCommandOutput) => void): void;
|
|
694
412
|
updateAssessmentStatus(args: UpdateAssessmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssessmentStatusCommandOutput) => void): void;
|
|
695
413
|
/**
|
|
696
|
-
* @
|
|
697
|
-
* <p> Updates a custom control in Audit Manager. </p>
|
|
414
|
+
* @see {@link UpdateControlCommand}
|
|
698
415
|
*/
|
|
699
416
|
updateControl(args: UpdateControlCommandInput, options?: __HttpHandlerOptions): Promise<UpdateControlCommandOutput>;
|
|
700
417
|
updateControl(args: UpdateControlCommandInput, cb: (err: any, data?: UpdateControlCommandOutput) => void): void;
|
|
701
418
|
updateControl(args: UpdateControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateControlCommandOutput) => void): void;
|
|
702
419
|
/**
|
|
703
|
-
* @
|
|
704
|
-
* <p> Updates Audit Manager settings for the current account. </p>
|
|
420
|
+
* @see {@link UpdateSettingsCommand}
|
|
705
421
|
*/
|
|
706
422
|
updateSettings(args: UpdateSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSettingsCommandOutput>;
|
|
707
423
|
updateSettings(args: UpdateSettingsCommandInput, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
708
424
|
updateSettings(args: UpdateSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
709
425
|
/**
|
|
710
|
-
* @
|
|
711
|
-
* <p> Validates the integrity of an assessment report in Audit Manager. </p>
|
|
426
|
+
* @see {@link ValidateAssessmentReportIntegrityCommand}
|
|
712
427
|
*/
|
|
713
428
|
validateAssessmentReportIntegrity(args: ValidateAssessmentReportIntegrityCommandInput, options?: __HttpHandlerOptions): Promise<ValidateAssessmentReportIntegrityCommandOutput>;
|
|
714
429
|
validateAssessmentReportIntegrity(args: ValidateAssessmentReportIntegrityCommandInput, cb: (err: any, data?: ValidateAssessmentReportIntegrityCommandOutput) => void): void;
|
|
715
430
|
validateAssessmentReportIntegrity(args: ValidateAssessmentReportIntegrityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateAssessmentReportIntegrityCommandOutput) => void): void;
|
|
716
431
|
}
|
|
432
|
+
/**
|
|
433
|
+
* @public
|
|
434
|
+
* <p>Welcome to the Audit Manager API reference. This guide is for developers who
|
|
435
|
+
* need detailed information about the Audit Manager API operations, data types, and
|
|
436
|
+
* errors. </p>
|
|
437
|
+
* <p>Audit Manager is a service that provides automated evidence collection so that you
|
|
438
|
+
* can continually audit your Amazon Web Services usage. You can use it to assess the
|
|
439
|
+
* effectiveness of your controls, manage risk, and simplify compliance.</p>
|
|
440
|
+
* <p>Audit Manager provides prebuilt frameworks that structure and automate assessments
|
|
441
|
+
* for a given compliance standard. Frameworks include a prebuilt collection of controls with
|
|
442
|
+
* descriptions and testing procedures. These controls are grouped according to the
|
|
443
|
+
* requirements of the specified compliance standard or regulation. You can also customize
|
|
444
|
+
* frameworks and controls to support internal audits with specific requirements. </p>
|
|
445
|
+
* <p>Use the following links to get started with the Audit Manager API:</p>
|
|
446
|
+
* <ul>
|
|
447
|
+
* <li>
|
|
448
|
+
* <p>
|
|
449
|
+
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Operations.html">Actions</a>: An
|
|
450
|
+
* alphabetical list of all Audit Manager API operations.</p>
|
|
451
|
+
* </li>
|
|
452
|
+
* <li>
|
|
453
|
+
* <p>
|
|
454
|
+
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Audit Manager data
|
|
455
|
+
* types.</p>
|
|
456
|
+
* </li>
|
|
457
|
+
* <li>
|
|
458
|
+
* <p>
|
|
459
|
+
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonParameters.html">Common
|
|
460
|
+
* parameters</a>: Parameters that all operations can use.</p>
|
|
461
|
+
* </li>
|
|
462
|
+
* <li>
|
|
463
|
+
* <p>
|
|
464
|
+
* <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonErrors.html">Common errors</a>:
|
|
465
|
+
* Client and server errors that all operations can return.</p>
|
|
466
|
+
* </li>
|
|
467
|
+
* </ul>
|
|
468
|
+
* <p>If you're new to Audit Manager, we recommend that you review the <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/what-is.html">
|
|
469
|
+
* Audit Manager User Guide</a>.</p>
|
|
470
|
+
*/
|
|
471
|
+
export declare class AuditManager extends AuditManagerClient implements AuditManager {
|
|
472
|
+
}
|