aws-sdk 2.1635.0 → 2.1637.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 (36) hide show
  1. package/README.md +1 -1
  2. package/apis/account-2021-02-01.min.json +101 -19
  3. package/apis/auditmanager-2017-07-25.min.json +57 -38
  4. package/apis/b2bi-2022-06-23.min.json +8 -1
  5. package/apis/codepipeline-2015-07-09.min.json +4 -1
  6. package/apis/firehose-2015-08-04.min.json +205 -159
  7. package/apis/fsx-2018-03-01.min.json +199 -163
  8. package/apis/glue-2017-03-31.min.json +176 -143
  9. package/apis/iotwireless-2020-11-22.min.json +3 -0
  10. package/apis/location-2020-11-19.min.json +1036 -754
  11. package/apis/location-2020-11-19.paginators.json +6 -0
  12. package/apis/sagemaker-2017-07-24.min.json +731 -730
  13. package/apis/sns-2010-03-31.min.json +7 -1
  14. package/apis/sqs-2012-11-05.min.json +3 -0
  15. package/apis/storagegateway-2013-06-30.min.json +30 -14
  16. package/apis/verifiedpermissions-2021-12-01.min.json +321 -84
  17. package/clients/account.d.ts +84 -9
  18. package/clients/auditmanager.d.ts +45 -33
  19. package/clients/b2bi.d.ts +1 -1
  20. package/clients/codepipeline.d.ts +4 -4
  21. package/clients/firehose.d.ts +73 -10
  22. package/clients/fsx.d.ts +62 -18
  23. package/clients/glue.d.ts +58 -0
  24. package/clients/iotwireless.d.ts +1 -1
  25. package/clients/location.d.ts +981 -677
  26. package/clients/sagemaker.d.ts +9 -4
  27. package/clients/sns.d.ts +7 -7
  28. package/clients/sqs.d.ts +5 -5
  29. package/clients/storagegateway.d.ts +31 -16
  30. package/clients/verifiedpermissions.d.ts +260 -8
  31. package/dist/aws-sdk-core-react-native.js +1 -1
  32. package/dist/aws-sdk-react-native.js +16 -16
  33. package/dist/aws-sdk.js +1278 -916
  34. package/dist/aws-sdk.min.js +61 -61
  35. package/lib/core.js +1 -1
  36. package/package.json +1 -1
@@ -11,6 +11,14 @@ declare class Account extends Service {
11
11
  */
12
12
  constructor(options?: Account.Types.ClientConfiguration)
13
13
  config: Config & Account.Types.ClientConfiguration;
14
+ /**
15
+ * Accepts the request that originated from StartPrimaryEmailUpdate to update the primary email address (also known as the root user email address) for the specified account.
16
+ */
17
+ acceptPrimaryEmailUpdate(params: Account.Types.AcceptPrimaryEmailUpdateRequest, callback?: (err: AWSError, data: Account.Types.AcceptPrimaryEmailUpdateResponse) => void): Request<Account.Types.AcceptPrimaryEmailUpdateResponse, AWSError>;
18
+ /**
19
+ * Accepts the request that originated from StartPrimaryEmailUpdate to update the primary email address (also known as the root user email address) for the specified account.
20
+ */
21
+ acceptPrimaryEmailUpdate(callback?: (err: AWSError, data: Account.Types.AcceptPrimaryEmailUpdateResponse) => void): Request<Account.Types.AcceptPrimaryEmailUpdateResponse, AWSError>;
14
22
  /**
15
23
  * Deletes the specified alternate contact from an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
16
24
  */
@@ -20,11 +28,11 @@ declare class Account extends Service {
20
28
  */
21
29
  deleteAlternateContact(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
22
30
  /**
23
- * Disables (opts-out) a particular Region for an account.
31
+ * Disables (opts-out) a particular Region for an account. The act of disabling a Region will remove all IAM access to any resources that reside in that Region.
24
32
  */
25
33
  disableRegion(params: Account.Types.DisableRegionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
26
34
  /**
27
- * Disables (opts-out) a particular Region for an account.
35
+ * Disables (opts-out) a particular Region for an account. The act of disabling a Region will remove all IAM access to any resources that reside in that Region.
28
36
  */
29
37
  disableRegion(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
30
38
  /**
@@ -51,6 +59,14 @@ declare class Account extends Service {
51
59
  * Retrieves the primary contact information of an Amazon Web Services account. For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
52
60
  */
53
61
  getContactInformation(callback?: (err: AWSError, data: Account.Types.GetContactInformationResponse) => void): Request<Account.Types.GetContactInformationResponse, AWSError>;
62
+ /**
63
+ * Retrieves the primary email address for the specified account.
64
+ */
65
+ getPrimaryEmail(params: Account.Types.GetPrimaryEmailRequest, callback?: (err: AWSError, data: Account.Types.GetPrimaryEmailResponse) => void): Request<Account.Types.GetPrimaryEmailResponse, AWSError>;
66
+ /**
67
+ * Retrieves the primary email address for the specified account.
68
+ */
69
+ getPrimaryEmail(callback?: (err: AWSError, data: Account.Types.GetPrimaryEmailResponse) => void): Request<Account.Types.GetPrimaryEmailResponse, AWSError>;
54
70
  /**
55
71
  * Retrieves the opt-in status of a particular Region.
56
72
  */
@@ -83,8 +99,36 @@ declare class Account extends Service {
83
99
  * Updates the primary contact information of an Amazon Web Services account. For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
84
100
  */
85
101
  putContactInformation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
102
+ /**
103
+ * Starts the process to update the primary email address for the specified account.
104
+ */
105
+ startPrimaryEmailUpdate(params: Account.Types.StartPrimaryEmailUpdateRequest, callback?: (err: AWSError, data: Account.Types.StartPrimaryEmailUpdateResponse) => void): Request<Account.Types.StartPrimaryEmailUpdateResponse, AWSError>;
106
+ /**
107
+ * Starts the process to update the primary email address for the specified account.
108
+ */
109
+ startPrimaryEmailUpdate(callback?: (err: AWSError, data: Account.Types.StartPrimaryEmailUpdateResponse) => void): Request<Account.Types.StartPrimaryEmailUpdateResponse, AWSError>;
86
110
  }
87
111
  declare namespace Account {
112
+ export interface AcceptPrimaryEmailUpdateRequest {
113
+ /**
114
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. This operation can only be called from the management account or the delegated administrator account of an organization for a member account. The management account can't specify its own AccountId.
115
+ */
116
+ AccountId: AccountId;
117
+ /**
118
+ * The OTP code sent to the PrimaryEmail specified on the StartPrimaryEmailUpdate API call.
119
+ */
120
+ Otp: Otp;
121
+ /**
122
+ * The new primary email address for use with the specified account. This must match the PrimaryEmail from the StartPrimaryEmailUpdate API call.
123
+ */
124
+ PrimaryEmail: PrimaryEmailAddress;
125
+ }
126
+ export interface AcceptPrimaryEmailUpdateResponse {
127
+ /**
128
+ * Retrieves the status of the accepted primary email update request.
129
+ */
130
+ Status?: PrimaryEmailUpdateStatus;
131
+ }
88
132
  export type AccountId = string;
89
133
  export type AddressLine = string;
90
134
  export interface AlternateContact {
@@ -154,7 +198,7 @@ declare namespace Account {
154
198
  */
155
199
  PostalCode: PostalCode;
156
200
  /**
157
- * The state or region of the primary contact address. This field is required in selected countries.
201
+ * The state or region of the primary contact address. If the mailing address is within the United States (US), the value in this field can be either a two character state code (for example, NJ) or the full state name (for example, New Jersey). This field is required in the following countries: US, CA, GB, DE, JP, IN, and BR.
158
202
  */
159
203
  StateOrRegion?: StateOrRegion;
160
204
  /**
@@ -176,7 +220,7 @@ declare namespace Account {
176
220
  }
177
221
  export interface DisableRegionRequest {
178
222
  /**
179
- * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
223
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
180
224
  */
181
225
  AccountId?: AccountId;
182
226
  /**
@@ -188,7 +232,7 @@ declare namespace Account {
188
232
  export type EmailAddress = string;
189
233
  export interface EnableRegionRequest {
190
234
  /**
191
- * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
235
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
192
236
  */
193
237
  AccountId?: AccountId;
194
238
  /**
@@ -215,7 +259,7 @@ declare namespace Account {
215
259
  }
216
260
  export interface GetContactInformationRequest {
217
261
  /**
218
- * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
262
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
219
263
  */
220
264
  AccountId?: AccountId;
221
265
  }
@@ -225,9 +269,21 @@ declare namespace Account {
225
269
  */
226
270
  ContactInformation?: ContactInformation;
227
271
  }
272
+ export interface GetPrimaryEmailRequest {
273
+ /**
274
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. This operation can only be called from the management account or the delegated administrator account of an organization for a member account. The management account can't specify its own AccountId.
275
+ */
276
+ AccountId: AccountId;
277
+ }
278
+ export interface GetPrimaryEmailResponse {
279
+ /**
280
+ * Retrieves the primary email address associated with the specified account.
281
+ */
282
+ PrimaryEmail?: PrimaryEmailAddress;
283
+ }
228
284
  export interface GetRegionOptStatusRequest {
229
285
  /**
230
- * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
286
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
231
287
  */
232
288
  AccountId?: AccountId;
233
289
  /**
@@ -247,7 +303,7 @@ declare namespace Account {
247
303
  }
248
304
  export interface ListRegionsRequest {
249
305
  /**
250
- * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
306
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
251
307
  */
252
308
  AccountId?: AccountId;
253
309
  /**
@@ -276,8 +332,11 @@ declare namespace Account {
276
332
  Regions?: RegionOptList;
277
333
  }
278
334
  export type Name = string;
335
+ export type Otp = string;
279
336
  export type PhoneNumber = string;
280
337
  export type PostalCode = string;
338
+ export type PrimaryEmailAddress = string;
339
+ export type PrimaryEmailUpdateStatus = "PENDING"|"ACCEPTED"|string;
281
340
  export interface PutAlternateContactRequest {
282
341
  /**
283
342
  * Specifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId; it must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, then don't specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
@@ -306,7 +365,7 @@ declare namespace Account {
306
365
  }
307
366
  export interface PutContactInformationRequest {
308
367
  /**
309
- * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
368
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
310
369
  */
311
370
  AccountId?: AccountId;
312
371
  /**
@@ -328,6 +387,22 @@ declare namespace Account {
328
387
  export type RegionOptList = Region[];
329
388
  export type RegionOptStatus = "ENABLED"|"ENABLING"|"DISABLING"|"DISABLED"|"ENABLED_BY_DEFAULT"|string;
330
389
  export type RegionOptStatusList = RegionOptStatus[];
390
+ export interface StartPrimaryEmailUpdateRequest {
391
+ /**
392
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. This operation can only be called from the management account or the delegated administrator account of an organization for a member account. The management account can't specify its own AccountId.
393
+ */
394
+ AccountId: AccountId;
395
+ /**
396
+ * The new primary email address (also known as the root user email address) to use in the specified account.
397
+ */
398
+ PrimaryEmail: PrimaryEmailAddress;
399
+ }
400
+ export interface StartPrimaryEmailUpdateResponse {
401
+ /**
402
+ * The status of the primary email update request.
403
+ */
404
+ Status?: PrimaryEmailUpdateStatus;
405
+ }
331
406
  export type StateOrRegion = string;
332
407
  export type String = string;
333
408
  export type Title = string;
@@ -284,11 +284,11 @@ declare class AuditManager extends Service {
284
284
  */
285
285
  getOrganizationAdminAccount(callback?: (err: AWSError, data: AuditManager.Types.GetOrganizationAdminAccountResponse) => void): Request<AuditManager.Types.GetOrganizationAdminAccountResponse, AWSError>;
286
286
  /**
287
- * Gets a list of all of the Amazon Web Services that you can choose to include in your assessment. When you create an assessment, specify which of these services you want to include to narrow the assessment's scope.
287
+ * Gets a list of the Amazon Web Services from which Audit Manager can collect evidence. Audit Manager defines which Amazon Web Services are in scope for an assessment. Audit Manager infers this scope by examining the assessment’s controls and their data sources, and then mapping this information to one or more of the corresponding Amazon Web Services that are in this list. For information about why it's no longer possible to specify services in scope manually, see I can't edit the services in scope for my assessment in the Troubleshooting section of the Audit Manager user guide.
288
288
  */
289
289
  getServicesInScope(params: AuditManager.Types.GetServicesInScopeRequest, callback?: (err: AWSError, data: AuditManager.Types.GetServicesInScopeResponse) => void): Request<AuditManager.Types.GetServicesInScopeResponse, AWSError>;
290
290
  /**
291
- * Gets a list of all of the Amazon Web Services that you can choose to include in your assessment. When you create an assessment, specify which of these services you want to include to narrow the assessment's scope.
291
+ * Gets a list of the Amazon Web Services from which Audit Manager can collect evidence. Audit Manager defines which Amazon Web Services are in scope for an assessment. Audit Manager infers this scope by examining the assessment’s controls and their data sources, and then mapping this information to one or more of the corresponding Amazon Web Services that are in this list. For information about why it's no longer possible to specify services in scope manually, see I can't edit the services in scope for my assessment in the Troubleshooting section of the Audit Manager user guide.
292
292
  */
293
293
  getServicesInScope(callback?: (err: AWSError, data: AuditManager.Types.GetServicesInScopeResponse) => void): Request<AuditManager.Types.GetServicesInScopeResponse, AWSError>;
294
294
  /**
@@ -340,19 +340,19 @@ declare class AuditManager extends Service {
340
340
  */
341
341
  listAssessments(callback?: (err: AWSError, data: AuditManager.Types.ListAssessmentsResponse) => void): Request<AuditManager.Types.ListAssessmentsResponse, AWSError>;
342
342
  /**
343
- * Lists the latest analytics data for control domains across all of your active assessments. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that control domain.
343
+ * Lists the latest analytics data for control domains across all of your active assessments. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that control domain.
344
344
  */
345
345
  listControlDomainInsights(params: AuditManager.Types.ListControlDomainInsightsRequest, callback?: (err: AWSError, data: AuditManager.Types.ListControlDomainInsightsResponse) => void): Request<AuditManager.Types.ListControlDomainInsightsResponse, AWSError>;
346
346
  /**
347
- * Lists the latest analytics data for control domains across all of your active assessments. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that control domain.
347
+ * Lists the latest analytics data for control domains across all of your active assessments. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that control domain.
348
348
  */
349
349
  listControlDomainInsights(callback?: (err: AWSError, data: AuditManager.Types.ListControlDomainInsightsResponse) => void): Request<AuditManager.Types.ListControlDomainInsightsResponse, AWSError>;
350
350
  /**
351
- * Lists analytics data for control domains within a specified active assessment. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that domain.
351
+ * Lists analytics data for control domains within a specified active assessment. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that domain.
352
352
  */
353
353
  listControlDomainInsightsByAssessment(params: AuditManager.Types.ListControlDomainInsightsByAssessmentRequest, callback?: (err: AWSError, data: AuditManager.Types.ListControlDomainInsightsByAssessmentResponse) => void): Request<AuditManager.Types.ListControlDomainInsightsByAssessmentResponse, AWSError>;
354
354
  /**
355
- * Lists analytics data for control domains within a specified active assessment. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that domain.
355
+ * Lists analytics data for control domains within a specified active assessment. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference. A control domain is listed only if at least one of the controls within that domain collected evidence on the lastUpdated date of controlDomainInsights. If this condition isn’t met, no data is listed for that domain.
356
356
  */
357
357
  listControlDomainInsightsByAssessment(callback?: (err: AWSError, data: AuditManager.Types.ListControlDomainInsightsByAssessmentResponse) => void): Request<AuditManager.Types.ListControlDomainInsightsByAssessmentResponse, AWSError>;
358
358
  /**
@@ -372,11 +372,11 @@ declare class AuditManager extends Service {
372
372
  */
373
373
  listControls(callback?: (err: AWSError, data: AuditManager.Types.ListControlsResponse) => void): Request<AuditManager.Types.ListControlsResponse, AWSError>;
374
374
  /**
375
- * Returns a list of keywords that are pre-mapped to the specified control data source.
375
+ * Returns a list of keywords that are pre-mapped to the specified control data source.
376
376
  */
377
377
  listKeywordsForDataSource(params: AuditManager.Types.ListKeywordsForDataSourceRequest, callback?: (err: AWSError, data: AuditManager.Types.ListKeywordsForDataSourceResponse) => void): Request<AuditManager.Types.ListKeywordsForDataSourceResponse, AWSError>;
378
378
  /**
379
- * Returns a list of keywords that are pre-mapped to the specified control data source.
379
+ * Returns a list of keywords that are pre-mapped to the specified control data source.
380
380
  */
381
381
  listKeywordsForDataSource(callback?: (err: AWSError, data: AuditManager.Types.ListKeywordsForDataSourceResponse) => void): Request<AuditManager.Types.ListKeywordsForDataSourceResponse, AWSError>;
382
382
  /**
@@ -1273,7 +1273,12 @@ declare namespace AuditManager {
1273
1273
  * The tags associated with the control.
1274
1274
  */
1275
1275
  tags?: TagMap;
1276
+ /**
1277
+ * The state of the control. The END_OF_SUPPORT state is applicable to standard controls only. This state indicates that the standard control can still be used to collect evidence, but Audit Manager is no longer updating or maintaining that control.
1278
+ */
1279
+ state?: ControlState;
1276
1280
  }
1281
+ export type ControlCatalogId = string;
1277
1282
  export interface ControlComment {
1278
1283
  /**
1279
1284
  * The name of the user who authored the comment.
@@ -1291,15 +1296,16 @@ declare namespace AuditManager {
1291
1296
  export type ControlCommentBody = string;
1292
1297
  export type ControlComments = ControlComment[];
1293
1298
  export type ControlDescription = string;
1299
+ export type ControlDomainId = string;
1294
1300
  export interface ControlDomainInsights {
1295
1301
  /**
1296
1302
  * The name of the control domain.
1297
1303
  */
1298
- name?: NonEmptyString;
1304
+ name?: String;
1299
1305
  /**
1300
- * The unique identifier for the control domain.
1306
+ * The unique identifier for the control domain. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference.
1301
1307
  */
1302
- id?: UUID;
1308
+ id?: ControlDomainId;
1303
1309
  /**
1304
1310
  * The number of controls in the control domain that collected non-compliant evidence on the lastUpdated date.
1305
1311
  */
@@ -1324,11 +1330,11 @@ declare namespace AuditManager {
1324
1330
  /**
1325
1331
  * The name of the assessment control.
1326
1332
  */
1327
- name?: NonEmptyString;
1333
+ name?: String;
1328
1334
  /**
1329
1335
  * The unique identifier for the assessment control.
1330
1336
  */
1331
- id?: UUID;
1337
+ id?: ControlDomainId;
1332
1338
  /**
1333
1339
  * A breakdown of the compliance check status for the evidence that’s associated with the assessment control.
1334
1340
  */
@@ -1346,11 +1352,11 @@ declare namespace AuditManager {
1346
1352
  /**
1347
1353
  * The name of the control.
1348
1354
  */
1349
- name?: NonEmptyString;
1355
+ name?: String;
1350
1356
  /**
1351
1357
  * The unique identifier for the control.
1352
1358
  */
1353
- id?: UUID;
1359
+ id?: ControlDomainId;
1354
1360
  /**
1355
1361
  * A breakdown of the compliance check status for the evidence that’s associated with the control.
1356
1362
  */
@@ -1374,11 +1380,11 @@ declare namespace AuditManager {
1374
1380
  */
1375
1381
  sourceDescription?: SourceDescription;
1376
1382
  /**
1377
- * The setup option for the data source. This option reflects if the evidence collection is automated or manual.
1383
+ * The setup option for the data source. This option reflects if the evidence collection method is automated or manual. If you don’t provide a value for sourceSetUpOption, Audit Manager automatically infers and populates the correct value based on the sourceType that you specify.
1378
1384
  */
1379
1385
  sourceSetUpOption?: SourceSetUpOption;
1380
1386
  /**
1381
- * Specifies one of the five data source types for evidence collection.
1387
+ * Specifies which type of data source is used to collect evidence. The source can be an individual data source type, such as AWS_Cloudtrail, AWS_Config, AWS_Security_Hub, AWS_API_Call, or MANUAL. The source can also be a managed grouping of data sources, such as a Core_Control or a Common_Control.
1382
1388
  */
1383
1389
  sourceType?: SourceType;
1384
1390
  sourceKeyword?: SourceKeyword;
@@ -1441,8 +1447,9 @@ declare namespace AuditManager {
1441
1447
  export type ControlSets = ControlSet[];
1442
1448
  export type ControlSetsCount = number;
1443
1449
  export type ControlSources = string;
1450
+ export type ControlState = "ACTIVE"|"END_OF_SUPPORT"|string;
1444
1451
  export type ControlStatus = "UNDER_REVIEW"|"REVIEWED"|"INACTIVE"|string;
1445
- export type ControlType = "Standard"|"Custom"|string;
1452
+ export type ControlType = "Standard"|"Custom"|"Core"|string;
1446
1453
  export type Controls = Control[];
1447
1454
  export type ControlsCount = number;
1448
1455
  export interface CreateAssessmentFrameworkControl {
@@ -1555,11 +1562,11 @@ declare namespace AuditManager {
1555
1562
  */
1556
1563
  sourceDescription?: SourceDescription;
1557
1564
  /**
1558
- * The setup option for the data source, which reflects if the evidence collection is automated or manual.
1565
+ * The setup option for the data source. This option reflects if the evidence collection method is automated or manual. If you don’t provide a value for sourceSetUpOption, Audit Manager automatically infers and populates the correct value based on the sourceType that you specify.
1559
1566
  */
1560
1567
  sourceSetUpOption?: SourceSetUpOption;
1561
1568
  /**
1562
- * Specifies one of the five types of data sources for evidence collection.
1569
+ * Specifies which type of data source is used to collect evidence. The source can be an individual data source type, such as AWS_Cloudtrail, AWS_Config, AWS_Security_Hub, AWS_API_Call, or MANUAL. The source can also be a managed grouping of data sources, such as a Core_Control or a Common_Control.
1563
1570
  */
1564
1571
  sourceType?: SourceType;
1565
1572
  sourceKeyword?: SourceKeyword;
@@ -1629,6 +1636,7 @@ declare namespace AuditManager {
1629
1636
  }
1630
1637
  export type CreateDelegationRequests = CreateDelegationRequest[];
1631
1638
  export type CreatedBy = string;
1639
+ export type DataSourceType = "AWS_Cloudtrail"|"AWS_Config"|"AWS_Security_Hub"|"AWS_API_Call"|"MANUAL"|string;
1632
1640
  export interface DefaultExportDestination {
1633
1641
  /**
1634
1642
  * The destination type, such as Amazon S3.
@@ -2365,9 +2373,9 @@ declare namespace AuditManager {
2365
2373
  export type LastUpdatedBy = string;
2366
2374
  export interface ListAssessmentControlInsightsByControlDomainRequest {
2367
2375
  /**
2368
- * The unique identifier for the control domain.
2376
+ * The unique identifier for the control domain. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference.
2369
2377
  */
2370
- controlDomainId: UUID;
2378
+ controlDomainId: ControlDomainId;
2371
2379
  /**
2372
2380
  * The unique identifier for the active assessment.
2373
2381
  */
@@ -2530,9 +2538,9 @@ declare namespace AuditManager {
2530
2538
  }
2531
2539
  export interface ListControlInsightsByControlDomainRequest {
2532
2540
  /**
2533
- * The unique identifier for the control domain.
2541
+ * The unique identifier for the control domain. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference.
2534
2542
  */
2535
- controlDomainId: UUID;
2543
+ controlDomainId: ControlDomainId;
2536
2544
  /**
2537
2545
  * The pagination token that's used to fetch the next set of results.
2538
2546
  */
@@ -2554,17 +2562,21 @@ declare namespace AuditManager {
2554
2562
  }
2555
2563
  export interface ListControlsRequest {
2556
2564
  /**
2557
- * The type of control, such as a standard control or a custom control.
2565
+ * A filter that narrows the list of controls to a specific type.
2558
2566
  */
2559
2567
  controlType: ControlType;
2560
2568
  /**
2561
- * The pagination token that's used to fetch the next set of results.
2569
+ * The pagination token that's used to fetch the next set of results.
2562
2570
  */
2563
2571
  nextToken?: Token;
2564
2572
  /**
2565
- * Represents the maximum number of results on a page or for an API request call.
2573
+ * The maximum number of results on a page or for an API request call.
2566
2574
  */
2567
2575
  maxResults?: MaxResults;
2576
+ /**
2577
+ * A filter that narrows the list of controls to a specific resource from the Amazon Web Services Control Catalog. To use this parameter, specify the ARN of the Control Catalog resource. You can specify either a control domain, a control objective, or a common control. For information about how to find the ARNs for these resources, see ListDomains , ListObjectives , and ListCommonControls . You can only filter by one Control Catalog resource at a time. Specifying multiple resource ARNs isn’t currently supported. If you want to filter by more than one ARN, we recommend that you run the ListControls operation separately for each ARN. Alternatively, specify UNCATEGORIZED to list controls that aren't mapped to a Control Catalog resource. For example, this operation might return a list of custom controls that don't belong to any control domain or control objective.
2578
+ */
2579
+ controlCatalogId?: ControlCatalogId;
2568
2580
  }
2569
2581
  export interface ListControlsResponse {
2570
2582
  /**
@@ -2572,15 +2584,15 @@ declare namespace AuditManager {
2572
2584
  */
2573
2585
  controlMetadataList?: ControlMetadataList;
2574
2586
  /**
2575
- * The pagination token that's used to fetch the next set of results.
2587
+ * The pagination token that's used to fetch the next set of results.
2576
2588
  */
2577
2589
  nextToken?: Token;
2578
2590
  }
2579
2591
  export interface ListKeywordsForDataSourceRequest {
2580
2592
  /**
2581
- * The control mapping data source that the keywords apply to.
2593
+ * The control mapping data source that the keywords apply to.
2582
2594
  */
2583
- source: SourceType;
2595
+ source: DataSourceType;
2584
2596
  /**
2585
2597
  * The pagination token that's used to fetch the next set of results.
2586
2598
  */
@@ -2592,7 +2604,7 @@ declare namespace AuditManager {
2592
2604
  }
2593
2605
  export interface ListKeywordsForDataSourceResponse {
2594
2606
  /**
2595
- * The list of keywords for the event mapping source.
2607
+ * The list of keywords for the control mapping source.
2596
2608
  */
2597
2609
  keywords?: Keywords;
2598
2610
  /**
@@ -2757,7 +2769,7 @@ declare namespace AuditManager {
2757
2769
  */
2758
2770
  awsAccounts?: AWSAccounts;
2759
2771
  /**
2760
- * The Amazon Web Services services that are included in the scope of the assessment.
2772
+ * The Amazon Web Services services that are included in the scope of the assessment. This API parameter is no longer supported. If you use this parameter to specify one or more Amazon Web Services, Audit Manager ignores this input. Instead, the value for awsServices will show as empty.
2761
2773
  */
2762
2774
  awsServices?: AWSServices;
2763
2775
  }
@@ -2834,7 +2846,7 @@ declare namespace AuditManager {
2834
2846
  }
2835
2847
  export type SourceName = string;
2836
2848
  export type SourceSetUpOption = "System_Controls_Mapping"|"Procedural_Controls_Mapping"|string;
2837
- export type SourceType = "AWS_Cloudtrail"|"AWS_Config"|"AWS_Security_Hub"|"AWS_API_Call"|"MANUAL"|string;
2849
+ export type SourceType = "AWS_Cloudtrail"|"AWS_Config"|"AWS_Security_Hub"|"AWS_API_Call"|"MANUAL"|"Common_Control"|"Core_Control"|string;
2838
2850
  export interface StartAssessmentFrameworkShareRequest {
2839
2851
  /**
2840
2852
  * The unique identifier for the custom framework to be shared.
package/clients/b2bi.d.ts CHANGED
@@ -340,7 +340,7 @@ declare namespace B2bi {
340
340
  /**
341
341
  * Specifies a list of the capabilities associated with this partnership.
342
342
  */
343
- capabilities?: PartnershipCapabilities;
343
+ capabilities: PartnershipCapabilities;
344
344
  /**
345
345
  * Reserved for future use.
346
346
  */
@@ -156,11 +156,11 @@ declare class CodePipeline extends Service {
156
156
  */
157
157
  listActionTypes(callback?: (err: AWSError, data: CodePipeline.Types.ListActionTypesOutput) => void): Request<CodePipeline.Types.ListActionTypesOutput, AWSError>;
158
158
  /**
159
- * Gets a summary of the most recent executions for a pipeline.
159
+ * Gets a summary of the most recent executions for a pipeline. When applying the filter for pipeline executions that have succeeded in the stage, the operation returns all executions in the current pipeline version beginning on February 1, 2024.
160
160
  */
161
161
  listPipelineExecutions(params: CodePipeline.Types.ListPipelineExecutionsInput, callback?: (err: AWSError, data: CodePipeline.Types.ListPipelineExecutionsOutput) => void): Request<CodePipeline.Types.ListPipelineExecutionsOutput, AWSError>;
162
162
  /**
163
- * Gets a summary of the most recent executions for a pipeline.
163
+ * Gets a summary of the most recent executions for a pipeline. When applying the filter for pipeline executions that have succeeded in the stage, the operation returns all executions in the current pipeline version beginning on February 1, 2024.
164
164
  */
165
165
  listPipelineExecutions(callback?: (err: AWSError, data: CodePipeline.Types.ListPipelineExecutionsOutput) => void): Request<CodePipeline.Types.ListPipelineExecutionsOutput, AWSError>;
166
166
  /**
@@ -1552,7 +1552,7 @@ declare namespace CodePipeline {
1552
1552
  */
1553
1553
  filter?: ActionExecutionFilter;
1554
1554
  /**
1555
- * The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100. Detailed execution history is available for executions run on or after February 21, 2019.
1555
+ * The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.
1556
1556
  */
1557
1557
  maxResults?: MaxResults;
1558
1558
  /**
@@ -2310,7 +2310,7 @@ declare namespace CodePipeline {
2310
2310
  revisionValue: Revision;
2311
2311
  }
2312
2312
  export type SourceRevisionOverrideList = SourceRevisionOverride[];
2313
- export type SourceRevisionType = "COMMIT_ID"|"IMAGE_DIGEST"|"S3_OBJECT_VERSION_ID"|string;
2313
+ export type SourceRevisionType = "COMMIT_ID"|"IMAGE_DIGEST"|"S3_OBJECT_VERSION_ID"|"S3_OBJECT_KEY"|string;
2314
2314
  export type StageActionDeclarationList = ActionDeclaration[];
2315
2315
  export type StageBlockerDeclarationList = BlockerDeclaration[];
2316
2316
  export interface StageContext {