aws-sdk 2.1417.0 → 2.1419.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 (48) hide show
  1. package/CHANGELOG.md +20 -1
  2. package/README.md +1 -1
  3. package/apis/cloudformation-2010-05-15.min.json +20 -4
  4. package/apis/codecatalyst-2022-09-28.min.json +294 -24
  5. package/apis/connectcases-2022-10-03.min.json +35 -25
  6. package/apis/grafana-2020-08-18.min.json +41 -4
  7. package/apis/grafana-2020-08-18.paginators.json +6 -0
  8. package/apis/medical-imaging-2023-07-19.examples.json +5 -0
  9. package/apis/medical-imaging-2023-07-19.min.json +1098 -0
  10. package/apis/medical-imaging-2023-07-19.paginators.json +28 -0
  11. package/apis/medical-imaging-2023-07-19.waiters2.json +5 -0
  12. package/apis/metadata.json +4 -0
  13. package/apis/ram-2018-01-04.min.json +49 -36
  14. package/apis/route53resolver-2018-04-01.min.json +201 -62
  15. package/apis/route53resolver-2018-04-01.paginators.json +6 -0
  16. package/apis/s3-2006-03-01.examples.json +32 -32
  17. package/apis/sagemaker-2017-07-24.min.json +205 -158
  18. package/apis/sagemaker-2017-07-24.paginators.json +6 -0
  19. package/apis/securitylake-2018-05-10.min.json +139 -34
  20. package/apis/ssm-sap-2018-05-10.min.json +98 -24
  21. package/apis/transcribe-2017-10-26.min.json +30 -6
  22. package/apis/wafv2-2019-07-29.min.json +134 -123
  23. package/clients/all.d.ts +1 -0
  24. package/clients/all.js +2 -1
  25. package/clients/cloudformation.d.ts +21 -0
  26. package/clients/codecatalyst.d.ts +264 -7
  27. package/clients/connectcases.d.ts +15 -4
  28. package/clients/ec2.d.ts +200 -200
  29. package/clients/grafana.d.ts +47 -5
  30. package/clients/lexmodelsv2.d.ts +11 -11
  31. package/clients/medicalimaging.d.ts +1102 -0
  32. package/clients/medicalimaging.js +19 -0
  33. package/clients/ram.d.ts +14 -1
  34. package/clients/route53resolver.d.ts +220 -7
  35. package/clients/sagemaker.d.ts +88 -10
  36. package/clients/sagemakerfeaturestoreruntime.d.ts +13 -13
  37. package/clients/savingsplans.d.ts +1 -1
  38. package/clients/securitylake.d.ts +93 -11
  39. package/clients/ssmsap.d.ts +131 -7
  40. package/clients/transcribeservice.d.ts +21 -0
  41. package/clients/wafv2.d.ts +12 -2
  42. package/dist/aws-sdk-core-react-native.js +2 -2
  43. package/dist/aws-sdk-react-native.js +62 -18
  44. package/dist/aws-sdk.js +27 -7
  45. package/dist/aws-sdk.min.js +97 -97
  46. package/lib/config_service_placeholders.d.ts +2 -0
  47. package/lib/core.js +1 -1
  48. package/package.json +1 -1
@@ -36,11 +36,11 @@ declare class SageMakerFeatureStoreRuntime extends Service {
36
36
  */
37
37
  getRecord(callback?: (err: AWSError, data: SageMakerFeatureStoreRuntime.Types.GetRecordResponse) => void): Request<SageMakerFeatureStoreRuntime.Types.GetRecordResponse, AWSError>;
38
38
  /**
39
- * Used for data ingestion into the FeatureStore. The PutRecord API writes to both the OnlineStore and OfflineStore. If the record is the latest record for the recordIdentifier, the record is written to both the OnlineStore and OfflineStore. If the record is a historic record, it is written only to the OfflineStore.
39
+ * The PutRecord API is used to ingest a list of Records into your feature group. If a new record’s EventTime is greater, the new record is written to both the OnlineStore and OfflineStore. Otherwise, the record is a historic record and it is written only to the OfflineStore. You can specify the ingestion to be applied to the OnlineStore, OfflineStore, or both by using the TargetStores request parameter. You can set the ingested record to expire at a given time to live (TTL) duration after the record’s event time, ExpiresAt = EventTime + TtlDuration, by specifying the TtlDuration parameter. A record level TtlDuration is set when specifying the TtlDuration parameter using the PutRecord API call. If the input TtlDuration is null or unspecified, TtlDuration is set to the default feature group level TtlDuration. A record level TtlDuration supersedes the group level TtlDuration.
40
40
  */
41
41
  putRecord(params: SageMakerFeatureStoreRuntime.Types.PutRecordRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
42
42
  /**
43
- * Used for data ingestion into the FeatureStore. The PutRecord API writes to both the OnlineStore and OfflineStore. If the record is the latest record for the recordIdentifier, the record is written to both the OnlineStore and OfflineStore. If the record is a historic record, it is written only to the OfflineStore.
43
+ * The PutRecord API is used to ingest a list of Records into your feature group. If a new record’s EventTime is greater, the new record is written to both the OnlineStore and OfflineStore. Otherwise, the record is a historic record and it is written only to the OfflineStore. You can specify the ingestion to be applied to the OnlineStore, OfflineStore, or both by using the TargetStores request parameter. You can set the ingested record to expire at a given time to live (TTL) duration after the record’s event time, ExpiresAt = EventTime + TtlDuration, by specifying the TtlDuration parameter. A record level TtlDuration is set when specifying the TtlDuration parameter using the PutRecord API call. If the input TtlDuration is null or unspecified, TtlDuration is set to the default feature group level TtlDuration. A record level TtlDuration supersedes the group level TtlDuration.
44
44
  */
45
45
  putRecord(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
46
46
  }
@@ -66,9 +66,9 @@ declare namespace SageMakerFeatureStoreRuntime {
66
66
  export type BatchGetRecordErrors = BatchGetRecordError[];
67
67
  export interface BatchGetRecordIdentifier {
68
68
  /**
69
- * A FeatureGroupName containing Records you are retrieving in a batch.
69
+ * The name or Amazon Resource Name (ARN) of the FeatureGroup containing the records you are retrieving in a batch.
70
70
  */
71
- FeatureGroupName: FeatureGroupName;
71
+ FeatureGroupName: FeatureGroupNameOrArn;
72
72
  /**
73
73
  * The value for a list of record identifiers in string format.
74
74
  */
@@ -81,7 +81,7 @@ declare namespace SageMakerFeatureStoreRuntime {
81
81
  export type BatchGetRecordIdentifiers = BatchGetRecordIdentifier[];
82
82
  export interface BatchGetRecordRequest {
83
83
  /**
84
- * A list of FeatureGroup names, with their corresponding RecordIdentifier value, and Feature name that have been requested to be retrieved in batch.
84
+ * A list containing the name or Amazon Resource Name (ARN) of the FeatureGroup, the list of names of Features to be retrieved, and the corresponding RecordIdentifier values as strings.
85
85
  */
86
86
  Identifiers: BatchGetRecordIdentifiers;
87
87
  /**
@@ -124,9 +124,9 @@ declare namespace SageMakerFeatureStoreRuntime {
124
124
  export type BatchGetRecordResultDetails = BatchGetRecordResultDetail[];
125
125
  export interface DeleteRecordRequest {
126
126
  /**
127
- * The name of the feature group to delete the record from.
127
+ * The name or Amazon Resource Name (ARN) of the feature group to delete the record from.
128
128
  */
129
- FeatureGroupName: FeatureGroupName;
129
+ FeatureGroupName: FeatureGroupNameOrArn;
130
130
  /**
131
131
  * The value for the RecordIdentifier that uniquely identifies the record, in string format.
132
132
  */
@@ -147,7 +147,7 @@ declare namespace SageMakerFeatureStoreRuntime {
147
147
  export type DeletionMode = "SoftDelete"|"HardDelete"|string;
148
148
  export type ExpirationTimeResponse = "Enabled"|"Disabled"|string;
149
149
  export type ExpiresAt = string;
150
- export type FeatureGroupName = string;
150
+ export type FeatureGroupNameOrArn = string;
151
151
  export type FeatureName = string;
152
152
  export type FeatureNames = FeatureName[];
153
153
  export interface FeatureValue {
@@ -162,9 +162,9 @@ declare namespace SageMakerFeatureStoreRuntime {
162
162
  }
163
163
  export interface GetRecordRequest {
164
164
  /**
165
- * The name of the feature group from which you want to retrieve a record.
165
+ * The name or Amazon Resource Name (ARN) of the feature group from which you want to retrieve a record.
166
166
  */
167
- FeatureGroupName: FeatureGroupName;
167
+ FeatureGroupName: FeatureGroupNameOrArn;
168
168
  /**
169
169
  * The value that corresponds to RecordIdentifier type and uniquely identifies the record in the FeatureGroup.
170
170
  */
@@ -174,7 +174,7 @@ declare namespace SageMakerFeatureStoreRuntime {
174
174
  */
175
175
  FeatureNames?: FeatureNames;
176
176
  /**
177
- * Parameter to request ExpiresAt in response. If Enabled, BatchGetRecord will return the value of ExpiresAt, if it is not null. If Disabled and null, BatchGetRecord will return null.
177
+ * Parameter to request ExpiresAt in response. If Enabled, GetRecord will return the value of ExpiresAt, if it is not null. If Disabled and null, GetRecord will return null.
178
178
  */
179
179
  ExpirationTimeResponse?: ExpirationTimeResponse;
180
180
  }
@@ -191,9 +191,9 @@ declare namespace SageMakerFeatureStoreRuntime {
191
191
  export type Message = string;
192
192
  export interface PutRecordRequest {
193
193
  /**
194
- * The name of the feature group that you want to insert the record into.
194
+ * The name or Amazon Resource Name (ARN) of the feature group that you want to insert the record into.
195
195
  */
196
- FeatureGroupName: FeatureGroupName;
196
+ FeatureGroupName: FeatureGroupNameOrArn;
197
197
  /**
198
198
  * List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following: Use GetRecord to retrieve the latest record. Update the record returned from GetRecord. Use PutRecord to update feature values.
199
199
  */
@@ -158,7 +158,7 @@ declare namespace SavingsPlans {
158
158
  */
159
159
  searchResults?: SavingsPlanRateList;
160
160
  /**
161
- * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
161
+ * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
162
162
  */
163
163
  nextToken?: PaginationToken;
164
164
  }
@@ -12,11 +12,11 @@ declare class SecurityLake extends Service {
12
12
  constructor(options?: SecurityLake.Types.ClientConfiguration)
13
13
  config: Config & SecurityLake.Types.ClientConfiguration;
14
14
  /**
15
- * Adds a natively supported Amazon Web Service as an Amazon Security Lake source. Enables source types for member accounts in required Amazon Web Services Regions, based on the parameters you specify. You can choose any source type in any Region for either accounts that are part of a trusted organization or standalone accounts. Once you add an Amazon Web Service as a source, Security Lake starts collecting logs and events from it, You can use this API only to enable natively supported Amazon Web Services as a source. Use CreateCustomLogSource to enable data collection from a custom source.
15
+ * Adds a natively supported Amazon Web Service as an Amazon Security Lake source. Enables source types for member accounts in required Amazon Web Services Regions, based on the parameters you specify. You can choose any source type in any Region for either accounts that are part of a trusted organization or standalone accounts. Once you add an Amazon Web Service as a source, Security Lake starts collecting logs and events from it. You can use this API only to enable natively supported Amazon Web Services as a source. Use CreateCustomLogSource to enable data collection from a custom source.
16
16
  */
17
17
  createAwsLogSource(params: SecurityLake.Types.CreateAwsLogSourceRequest, callback?: (err: AWSError, data: SecurityLake.Types.CreateAwsLogSourceResponse) => void): Request<SecurityLake.Types.CreateAwsLogSourceResponse, AWSError>;
18
18
  /**
19
- * Adds a natively supported Amazon Web Service as an Amazon Security Lake source. Enables source types for member accounts in required Amazon Web Services Regions, based on the parameters you specify. You can choose any source type in any Region for either accounts that are part of a trusted organization or standalone accounts. Once you add an Amazon Web Service as a source, Security Lake starts collecting logs and events from it, You can use this API only to enable natively supported Amazon Web Services as a source. Use CreateCustomLogSource to enable data collection from a custom source.
19
+ * Adds a natively supported Amazon Web Service as an Amazon Security Lake source. Enables source types for member accounts in required Amazon Web Services Regions, based on the parameters you specify. You can choose any source type in any Region for either accounts that are part of a trusted organization or standalone accounts. Once you add an Amazon Web Service as a source, Security Lake starts collecting logs and events from it. You can use this API only to enable natively supported Amazon Web Services as a source. Use CreateCustomLogSource to enable data collection from a custom source.
20
20
  */
21
21
  createAwsLogSource(callback?: (err: AWSError, data: SecurityLake.Types.CreateAwsLogSourceResponse) => void): Request<SecurityLake.Types.CreateAwsLogSourceResponse, AWSError>;
22
22
  /**
@@ -28,11 +28,11 @@ declare class SecurityLake extends Service {
28
28
  */
29
29
  createCustomLogSource(callback?: (err: AWSError, data: SecurityLake.Types.CreateCustomLogSourceResponse) => void): Request<SecurityLake.Types.CreateCustomLogSourceResponse, AWSError>;
30
30
  /**
31
- * Initializes an Amazon Security Lake instance with the provided (or default) configuration. You can enable Security Lake in Amazon Web Services Regions with customized settings before enabling log collection in Regions. By default, the CreateDataLake Security Lake in all Regions. To specify particular Regions, configure these Regions using the configurations parameter. If you have already enabled Security Lake in a Region when you call this command, the command will update the Region if you provide new configuration parameters. If you have not already enabled Security Lake in the Region when you call this API, it will set up the data lake in the Region with the specified configurations. When you enable Security Lake, it starts ingesting security data after the CreateAwsLogSource call. This includes ingesting security data from sources, storing data, and making data accessible to subscribers. Security Lake also enables all the existing settings and resources that it stores or maintains for your Amazon Web Services account in the current Region, including security log and event data. For more information, see the Amazon Security Lake User Guide.
31
+ * Initializes an Amazon Security Lake instance with the provided (or default) configuration. You can enable Security Lake in Amazon Web Services Regions with customized settings before enabling log collection in Regions. To specify particular Regions, configure these Regions using the configurations parameter. If you have already enabled Security Lake in a Region when you call this command, the command will update the Region if you provide new configuration parameters. If you have not already enabled Security Lake in the Region when you call this API, it will set up the data lake in the Region with the specified configurations. When you enable Security Lake, it starts ingesting security data after the CreateAwsLogSource call. This includes ingesting security data from sources, storing data, and making data accessible to subscribers. Security Lake also enables all the existing settings and resources that it stores or maintains for your Amazon Web Services account in the current Region, including security log and event data. For more information, see the Amazon Security Lake User Guide.
32
32
  */
33
33
  createDataLake(params: SecurityLake.Types.CreateDataLakeRequest, callback?: (err: AWSError, data: SecurityLake.Types.CreateDataLakeResponse) => void): Request<SecurityLake.Types.CreateDataLakeResponse, AWSError>;
34
34
  /**
35
- * Initializes an Amazon Security Lake instance with the provided (or default) configuration. You can enable Security Lake in Amazon Web Services Regions with customized settings before enabling log collection in Regions. By default, the CreateDataLake Security Lake in all Regions. To specify particular Regions, configure these Regions using the configurations parameter. If you have already enabled Security Lake in a Region when you call this command, the command will update the Region if you provide new configuration parameters. If you have not already enabled Security Lake in the Region when you call this API, it will set up the data lake in the Region with the specified configurations. When you enable Security Lake, it starts ingesting security data after the CreateAwsLogSource call. This includes ingesting security data from sources, storing data, and making data accessible to subscribers. Security Lake also enables all the existing settings and resources that it stores or maintains for your Amazon Web Services account in the current Region, including security log and event data. For more information, see the Amazon Security Lake User Guide.
35
+ * Initializes an Amazon Security Lake instance with the provided (or default) configuration. You can enable Security Lake in Amazon Web Services Regions with customized settings before enabling log collection in Regions. To specify particular Regions, configure these Regions using the configurations parameter. If you have already enabled Security Lake in a Region when you call this command, the command will update the Region if you provide new configuration parameters. If you have not already enabled Security Lake in the Region when you call this API, it will set up the data lake in the Region with the specified configurations. When you enable Security Lake, it starts ingesting security data after the CreateAwsLogSource call. This includes ingesting security data from sources, storing data, and making data accessible to subscribers. Security Lake also enables all the existing settings and resources that it stores or maintains for your Amazon Web Services account in the current Region, including security log and event data. For more information, see the Amazon Security Lake User Guide.
36
36
  */
37
37
  createDataLake(callback?: (err: AWSError, data: SecurityLake.Types.CreateDataLakeResponse) => void): Request<SecurityLake.Types.CreateDataLakeResponse, AWSError>;
38
38
  /**
@@ -100,11 +100,11 @@ declare class SecurityLake extends Service {
100
100
  */
101
101
  deleteDataLakeExceptionSubscription(callback?: (err: AWSError, data: SecurityLake.Types.DeleteDataLakeExceptionSubscriptionResponse) => void): Request<SecurityLake.Types.DeleteDataLakeExceptionSubscriptionResponse, AWSError>;
102
102
  /**
103
- * Removes automatic the enablement of configuration settings for new member accounts (but retains the settings for the delegated administrator) from Amazon Security Lake. You must run this API using the credentials of the delegated administrator. When you run this API, new member accounts that are added after the organization enables Security Lake won't contribute to the data lake.
103
+ * Turns off automatic enablement of Amazon Security Lake for member accounts that are added to an organization in Organizations. Only the delegated Security Lake administrator for an organization can perform this operation. If the delegated Security Lake administrator performs this operation, new member accounts won't automatically contribute data to the data lake.
104
104
  */
105
105
  deleteDataLakeOrganizationConfiguration(params: SecurityLake.Types.DeleteDataLakeOrganizationConfigurationRequest, callback?: (err: AWSError, data: SecurityLake.Types.DeleteDataLakeOrganizationConfigurationResponse) => void): Request<SecurityLake.Types.DeleteDataLakeOrganizationConfigurationResponse, AWSError>;
106
106
  /**
107
- * Removes automatic the enablement of configuration settings for new member accounts (but retains the settings for the delegated administrator) from Amazon Security Lake. You must run this API using the credentials of the delegated administrator. When you run this API, new member accounts that are added after the organization enables Security Lake won't contribute to the data lake.
107
+ * Turns off automatic enablement of Amazon Security Lake for member accounts that are added to an organization in Organizations. Only the delegated Security Lake administrator for an organization can perform this operation. If the delegated Security Lake administrator performs this operation, new member accounts won't automatically contribute data to the data lake.
108
108
  */
109
109
  deleteDataLakeOrganizationConfiguration(callback?: (err: AWSError, data: SecurityLake.Types.DeleteDataLakeOrganizationConfigurationResponse) => void): Request<SecurityLake.Types.DeleteDataLakeOrganizationConfigurationResponse, AWSError>;
110
110
  /**
@@ -172,11 +172,11 @@ declare class SecurityLake extends Service {
172
172
  */
173
173
  listDataLakeExceptions(callback?: (err: AWSError, data: SecurityLake.Types.ListDataLakeExceptionsResponse) => void): Request<SecurityLake.Types.ListDataLakeExceptionsResponse, AWSError>;
174
174
  /**
175
- * Retrieves the Amazon Security Lake configuration object for the specified Amazon Web Services account ID. You can use the ListDataLakes API to know whether Security Lake is enabled for any region.
175
+ * Retrieves the Amazon Security Lake configuration object for the specified Amazon Web Services Regions. You can use this operation to determine whether Security Lake is enabled for a Region.
176
176
  */
177
177
  listDataLakes(params: SecurityLake.Types.ListDataLakesRequest, callback?: (err: AWSError, data: SecurityLake.Types.ListDataLakesResponse) => void): Request<SecurityLake.Types.ListDataLakesResponse, AWSError>;
178
178
  /**
179
- * Retrieves the Amazon Security Lake configuration object for the specified Amazon Web Services account ID. You can use the ListDataLakes API to know whether Security Lake is enabled for any region.
179
+ * Retrieves the Amazon Security Lake configuration object for the specified Amazon Web Services Regions. You can use this operation to determine whether Security Lake is enabled for a Region.
180
180
  */
181
181
  listDataLakes(callback?: (err: AWSError, data: SecurityLake.Types.ListDataLakesResponse) => void): Request<SecurityLake.Types.ListDataLakesResponse, AWSError>;
182
182
  /**
@@ -195,6 +195,14 @@ declare class SecurityLake extends Service {
195
195
  * List all subscribers for the specific Amazon Security Lake account ID. You can retrieve a list of subscriptions associated with a specific organization or Amazon Web Services account.
196
196
  */
197
197
  listSubscribers(callback?: (err: AWSError, data: SecurityLake.Types.ListSubscribersResponse) => void): Request<SecurityLake.Types.ListSubscribersResponse, AWSError>;
198
+ /**
199
+ * Retrieves the tags (keys and values) that are associated with an Amazon Security Lake resource: a subscriber, or the data lake configuration for your Amazon Web Services account in a particular Amazon Web Services Region.
200
+ */
201
+ listTagsForResource(params: SecurityLake.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: SecurityLake.Types.ListTagsForResourceResponse) => void): Request<SecurityLake.Types.ListTagsForResourceResponse, AWSError>;
202
+ /**
203
+ * Retrieves the tags (keys and values) that are associated with an Amazon Security Lake resource: a subscriber, or the data lake configuration for your Amazon Web Services account in a particular Amazon Web Services Region.
204
+ */
205
+ listTagsForResource(callback?: (err: AWSError, data: SecurityLake.Types.ListTagsForResourceResponse) => void): Request<SecurityLake.Types.ListTagsForResourceResponse, AWSError>;
198
206
  /**
199
207
  * Designates the Amazon Security Lake delegated administrator account for the organization. This API can only be called by the organization management account. The organization management account cannot be the delegated administrator account.
200
208
  */
@@ -203,6 +211,22 @@ declare class SecurityLake extends Service {
203
211
  * Designates the Amazon Security Lake delegated administrator account for the organization. This API can only be called by the organization management account. The organization management account cannot be the delegated administrator account.
204
212
  */
205
213
  registerDataLakeDelegatedAdministrator(callback?: (err: AWSError, data: SecurityLake.Types.RegisterDataLakeDelegatedAdministratorResponse) => void): Request<SecurityLake.Types.RegisterDataLakeDelegatedAdministratorResponse, AWSError>;
214
+ /**
215
+ * Adds or updates one or more tags that are associated with an Amazon Security Lake resource: a subscriber, or the data lake configuration for your Amazon Web Services account in a particular Amazon Web Services Region. A tag is a label that you can define and associate with Amazon Web Services resources. Each tag consists of a required tag key and an associated tag value. A tag key is a general label that acts as a category for a more specific tag value. A tag value acts as a descriptor for a tag key. Tags can help you identify, categorize, and manage resources in different ways, such as by owner, environment, or other criteria. For more information, see Tagging Amazon Security Lake resources in the Amazon Security Lake User Guide.
216
+ */
217
+ tagResource(params: SecurityLake.Types.TagResourceRequest, callback?: (err: AWSError, data: SecurityLake.Types.TagResourceResponse) => void): Request<SecurityLake.Types.TagResourceResponse, AWSError>;
218
+ /**
219
+ * Adds or updates one or more tags that are associated with an Amazon Security Lake resource: a subscriber, or the data lake configuration for your Amazon Web Services account in a particular Amazon Web Services Region. A tag is a label that you can define and associate with Amazon Web Services resources. Each tag consists of a required tag key and an associated tag value. A tag key is a general label that acts as a category for a more specific tag value. A tag value acts as a descriptor for a tag key. Tags can help you identify, categorize, and manage resources in different ways, such as by owner, environment, or other criteria. For more information, see Tagging Amazon Security Lake resources in the Amazon Security Lake User Guide.
220
+ */
221
+ tagResource(callback?: (err: AWSError, data: SecurityLake.Types.TagResourceResponse) => void): Request<SecurityLake.Types.TagResourceResponse, AWSError>;
222
+ /**
223
+ * Removes one or more tags (keys and values) from an Amazon Security Lake resource: a subscriber, or the data lake configuration for your Amazon Web Services account in a particular Amazon Web Services Region.
224
+ */
225
+ untagResource(params: SecurityLake.Types.UntagResourceRequest, callback?: (err: AWSError, data: SecurityLake.Types.UntagResourceResponse) => void): Request<SecurityLake.Types.UntagResourceResponse, AWSError>;
226
+ /**
227
+ * Removes one or more tags (keys and values) from an Amazon Security Lake resource: a subscriber, or the data lake configuration for your Amazon Web Services account in a particular Amazon Web Services Region.
228
+ */
229
+ untagResource(callback?: (err: AWSError, data: SecurityLake.Types.UntagResourceResponse) => void): Request<SecurityLake.Types.UntagResourceResponse, AWSError>;
206
230
  /**
207
231
  * Specifies where to store your security data and for how long. You can add a rollup Region to consolidate data from multiple Amazon Web Services Regions.
208
232
  */
@@ -355,6 +379,10 @@ declare namespace SecurityLake {
355
379
  * The Amazon Resource Name (ARN) used to create and update the Glue table. This table contains partitions generated by the ingestion and normalization of Amazon Web Services log sources and custom sources.
356
380
  */
357
381
  metaStoreManagerRoleArn: RoleArn;
382
+ /**
383
+ * An array of objects, one for each tag to associate with the data lake configuration. For each tag, you must specify both a tag key and a tag value. A tag value cannot be null, but it can be an empty string.
384
+ */
385
+ tags?: TagList;
358
386
  }
359
387
  export interface CreateDataLakeResponse {
360
388
  /**
@@ -399,6 +427,10 @@ declare namespace SecurityLake {
399
427
  * The name of your Security Lake subscriber account.
400
428
  */
401
429
  subscriberName: CreateSubscriberRequestSubscriberNameString;
430
+ /**
431
+ * An array of objects, one for each tag to associate with the subscriber. For each tag, you must specify both a tag key and a tag value. A tag value cannot be null, but it can be an empty string.
432
+ */
433
+ tags?: TagList;
402
434
  }
403
435
  export type CreateSubscriberRequestSubscriberNameString = string;
404
436
  export interface CreateSubscriberResponse {
@@ -682,7 +714,7 @@ declare namespace SecurityLake {
682
714
  }
683
715
  export interface DeleteDataLakeOrganizationConfigurationRequest {
684
716
  /**
685
- * Removes the automatic enablement of configuration settings for new member accounts in Security Lake.
717
+ * Turns off automatic enablement of Security Lake for member accounts that are added to an organization.
686
718
  */
687
719
  autoEnableNewAccount: DataLakeAutoEnableNewAccountConfigurationList;
688
720
  }
@@ -894,6 +926,18 @@ declare namespace SecurityLake {
894
926
  */
895
927
  subscribers?: SubscriberResourceList;
896
928
  }
929
+ export interface ListTagsForResourceRequest {
930
+ /**
931
+ * The Amazon Resource Name (ARN) of the Amazon Security Lake resource to retrieve the tags for.
932
+ */
933
+ resourceArn: AmazonResourceName;
934
+ }
935
+ export interface ListTagsForResourceResponse {
936
+ /**
937
+ * An array of objects, one for each tag (key and value) that’s associated with the Amazon Security Lake resource.
938
+ */
939
+ tags?: TagList;
940
+ }
897
941
  export interface LogSource {
898
942
  /**
899
943
  * Specify the account from which you want to collect logs.
@@ -911,11 +955,11 @@ declare namespace SecurityLake {
911
955
  export type LogSourceList = LogSource[];
912
956
  export interface LogSourceResource {
913
957
  /**
914
- * Amazon Security Lake supports log and event collection for natively supported Amazon Web Services.
958
+ * Amazon Security Lake supports log and event collection for natively supported Amazon Web Services. For more information, see the Amazon Security Lake User Guide.
915
959
  */
916
960
  awsLogSource?: AwsLogSourceResource;
917
961
  /**
918
- * Amazon Security Lake supports custom source types. For a detailed list, see the Amazon Security Lake User Guide.
962
+ * Amazon Security Lake supports custom source types. For more information, see the Amazon Security Lake User Guide.
919
963
  */
920
964
  customLogSource?: CustomLogSourceResource;
921
965
  }
@@ -1021,7 +1065,45 @@ declare namespace SecurityLake {
1021
1065
  export type SubscriberStatus = "ACTIVE"|"DEACTIVATED"|"PENDING"|"READY"|string;
1022
1066
  export type SubscriptionProtocol = string;
1023
1067
  export type SyntheticTimestamp_date_time = Date;
1068
+ export interface Tag {
1069
+ /**
1070
+ * The name of the tag. This is a general label that acts as a category for a more specific tag value (value).
1071
+ */
1072
+ key: TagKey;
1073
+ /**
1074
+ * The value that’s associated with the specified tag key (key). This value acts as a descriptor for the tag key. A tag value cannot be null, but it can be an empty string.
1075
+ */
1076
+ value: TagValue;
1077
+ }
1078
+ export type TagKey = string;
1079
+ export type TagKeyList = TagKey[];
1080
+ export type TagList = Tag[];
1081
+ export interface TagResourceRequest {
1082
+ /**
1083
+ * The Amazon Resource Name (ARN) of the Amazon Security Lake resource to add or update the tags for.
1084
+ */
1085
+ resourceArn: AmazonResourceName;
1086
+ /**
1087
+ * An array of objects, one for each tag (key and value) to associate with the Amazon Security Lake resource. For each tag, you must specify both a tag key and a tag value. A tag value cannot be null, but it can be an empty string.
1088
+ */
1089
+ tags: TagList;
1090
+ }
1091
+ export interface TagResourceResponse {
1092
+ }
1093
+ export type TagValue = string;
1024
1094
  export type UUID = string;
1095
+ export interface UntagResourceRequest {
1096
+ /**
1097
+ * The Amazon Resource Name (ARN) of the Amazon Security Lake resource to remove one or more tags from.
1098
+ */
1099
+ resourceArn: AmazonResourceName;
1100
+ /**
1101
+ * A list of one or more tag keys. For each value in the list, specify the tag key for a tag to remove from the Amazon Security Lake resource.
1102
+ */
1103
+ tagKeys: TagKeyList;
1104
+ }
1105
+ export interface UntagResourceResponse {
1106
+ }
1025
1107
  export interface UpdateDataLakeExceptionSubscriptionRequest {
1026
1108
  /**
1027
1109
  * The time-to-live (TTL) for the exception message to remain.
@@ -123,6 +123,14 @@ declare class SsmSap extends Service {
123
123
  * Register an SAP application with AWS Systems Manager for SAP. You must meet the following requirements before registering. The SAP application you want to register with AWS Systems Manager for SAP is running on Amazon EC2. AWS Systems Manager Agent must be setup on an Amazon EC2 instance along with the required IAM permissions. Amazon EC2 instance(s) must have access to the secrets created in AWS Secrets Manager to manage SAP applications and components.
124
124
  */
125
125
  registerApplication(callback?: (err: AWSError, data: SsmSap.Types.RegisterApplicationOutput) => void): Request<SsmSap.Types.RegisterApplicationOutput, AWSError>;
126
+ /**
127
+ * Refreshes a registered application.
128
+ */
129
+ startApplicationRefresh(params: SsmSap.Types.StartApplicationRefreshInput, callback?: (err: AWSError, data: SsmSap.Types.StartApplicationRefreshOutput) => void): Request<SsmSap.Types.StartApplicationRefreshOutput, AWSError>;
130
+ /**
131
+ * Refreshes a registered application.
132
+ */
133
+ startApplicationRefresh(callback?: (err: AWSError, data: SsmSap.Types.StartApplicationRefreshOutput) => void): Request<SsmSap.Types.StartApplicationRefreshOutput, AWSError>;
126
134
  /**
127
135
  * Creates tag for a resource by specifying the ARN.
128
136
  */
@@ -171,6 +179,10 @@ declare namespace SsmSap {
171
179
  * The status of the application.
172
180
  */
173
181
  Status?: ApplicationStatus;
182
+ /**
183
+ * The latest discovery result for the application.
184
+ */
185
+ DiscoveryStatus?: ApplicationDiscoveryStatus;
174
186
  /**
175
187
  * The components of the application.
176
188
  */
@@ -199,6 +211,7 @@ declare namespace SsmSap {
199
211
  SecretId: SecretId;
200
212
  }
201
213
  export type ApplicationCredentialList = ApplicationCredential[];
214
+ export type ApplicationDiscoveryStatus = "SUCCESS"|"REGISTRATION_FAILED"|"REFRESH_FAILED"|"REGISTERING"|"DELETING"|string;
202
215
  export type ApplicationId = string;
203
216
  export type ApplicationStatus = "ACTIVATED"|"STARTING"|"STOPPED"|"STOPPING"|"FAILED"|"REGISTERING"|"DELETING"|"UNKNOWN"|string;
204
217
  export interface ApplicationSummary {
@@ -222,11 +235,46 @@ declare namespace SsmSap {
222
235
  export type ApplicationSummaryList = ApplicationSummary[];
223
236
  export type ApplicationType = "HANA"|string;
224
237
  export type Arn = string;
238
+ export interface AssociatedHost {
239
+ /**
240
+ * The name of the host.
241
+ */
242
+ Hostname?: String;
243
+ /**
244
+ * The ID of the Amazon EC2 instance.
245
+ */
246
+ Ec2InstanceId?: String;
247
+ /**
248
+ * The version of the operating system.
249
+ */
250
+ OsVersion?: String;
251
+ }
252
+ export interface BackintConfig {
253
+ /**
254
+ * AWS service for your database backup.
255
+ */
256
+ BackintMode: BackintMode;
257
+ /**
258
+ *
259
+ */
260
+ EnsureNoBackupInProcess: Boolean;
261
+ }
262
+ export type BackintMode = "AWSBackup"|string;
263
+ export type Boolean = boolean;
264
+ export type ClusterStatus = "ONLINE"|"STANDBY"|"MAINTENANCE"|"OFFLINE"|"NONE"|string;
225
265
  export interface Component {
226
266
  /**
227
267
  * The ID of the component.
228
268
  */
229
269
  ComponentId?: ComponentId;
270
+ /**
271
+ * The parent component of a highly available environment. For example, in a highly available SAP on AWS workload, the parent component consists of the entire setup, including the child components.
272
+ */
273
+ ParentComponent?: ComponentId;
274
+ /**
275
+ * The child components of a highly available environment. For example, in a highly available SAP on AWS workload, the child component consists of the primary and secondar instances.
276
+ */
277
+ ChildComponents?: ComponentIdList;
230
278
  /**
231
279
  * The ID of the application.
232
280
  */
@@ -239,6 +287,26 @@ declare namespace SsmSap {
239
287
  * The status of the component.
240
288
  */
241
289
  Status?: ComponentStatus;
290
+ /**
291
+ * The hostname of the component.
292
+ */
293
+ SapHostname?: String;
294
+ /**
295
+ * The kernel version of the component.
296
+ */
297
+ SapKernelVersion?: String;
298
+ /**
299
+ * The SAP HANA version of the component.
300
+ */
301
+ HdbVersion?: String;
302
+ /**
303
+ * Details of the SAP HANA system replication for the component.
304
+ */
305
+ Resilience?: Resilience;
306
+ /**
307
+ * The associated host of the component.
308
+ */
309
+ AssociatedHost?: AssociatedHost;
242
310
  /**
243
311
  * The SAP HANA databases of the component.
244
312
  */
@@ -255,10 +323,14 @@ declare namespace SsmSap {
255
323
  * The time at which the component was last updated.
256
324
  */
257
325
  LastUpdated?: Timestamp;
326
+ /**
327
+ * The Amazon Resource Name (ARN) of the component.
328
+ */
329
+ Arn?: SsmSapArn;
258
330
  }
259
331
  export type ComponentId = string;
260
332
  export type ComponentIdList = ComponentId[];
261
- export type ComponentStatus = "ACTIVATED"|string;
333
+ export type ComponentStatus = "ACTIVATED"|"STARTING"|"STOPPED"|"STOPPING"|"RUNNING"|"RUNNING_WITH_ERROR"|"UNDEFINED"|string;
262
334
  export interface ComponentSummary {
263
335
  /**
264
336
  * The ID of the application.
@@ -276,9 +348,13 @@ declare namespace SsmSap {
276
348
  * The tags of the component.
277
349
  */
278
350
  Tags?: TagMap;
351
+ /**
352
+ * The Amazon Resource Name (ARN) of the component summary.
353
+ */
354
+ Arn?: SsmSapArn;
279
355
  }
280
356
  export type ComponentSummaryList = ComponentSummary[];
281
- export type ComponentType = "HANA"|string;
357
+ export type ComponentType = "HANA"|"HANA_NODE"|string;
282
358
  export type CredentialType = "ADMIN"|string;
283
359
  export interface Database {
284
360
  /**
@@ -329,7 +405,7 @@ declare namespace SsmSap {
329
405
  export type DatabaseId = string;
330
406
  export type DatabaseIdList = DatabaseId[];
331
407
  export type DatabaseName = string;
332
- export type DatabaseStatus = "RUNNING"|"STARTING"|"STOPPED"|"WARNING"|"UNKNOWN"|string;
408
+ export type DatabaseStatus = "RUNNING"|"STARTING"|"STOPPED"|"WARNING"|"UNKNOWN"|"ERROR"|string;
333
409
  export interface DatabaseSummary {
334
410
  /**
335
411
  * The ID of the application.
@@ -443,6 +519,10 @@ declare namespace SsmSap {
443
519
  * The component of an application registered with AWS Systems Manager for SAP.
444
520
  */
445
521
  Component?: Component;
522
+ /**
523
+ * The tags of a component.
524
+ */
525
+ Tags?: TagMap;
446
526
  }
447
527
  export interface GetDatabaseInput {
448
528
  /**
@@ -505,18 +585,26 @@ declare namespace SsmSap {
505
585
  * The name of the Dedicated Host.
506
586
  */
507
587
  HostName?: String;
508
- /**
509
- * The role of the Dedicated Host.
510
- */
511
- HostRole?: HostRole;
512
588
  /**
513
589
  * The IP address of the Dedicated Host.
514
590
  */
515
591
  HostIp?: String;
592
+ /**
593
+ * The ID of Amazon EC2 instance.
594
+ */
595
+ EC2InstanceId?: String;
516
596
  /**
517
597
  * The instance ID of the instance on the Dedicated Host.
518
598
  */
519
599
  InstanceId?: String;
600
+ /**
601
+ * The role of the Dedicated Host.
602
+ */
603
+ HostRole?: HostRole;
604
+ /**
605
+ * The version of the operating system.
606
+ */
607
+ OsVersion?: String;
520
608
  }
521
609
  export type HostList = Host[];
522
610
  export type HostRole = "LEADER"|"WORKER"|"STANDBY"|"UNKNOWN"|string;
@@ -686,6 +774,7 @@ declare namespace SsmSap {
686
774
  export type OperationId = string;
687
775
  export type OperationIdList = OperationId[];
688
776
  export type OperationList = Operation[];
777
+ export type OperationMode = "PRIMARY"|"LOGREPLAY"|"DELTA_DATASHIPPING"|"LOGREPLAY_READACCESS"|"NONE"|string;
689
778
  export type OperationProperties = {[key: string]: String};
690
779
  export type OperationStatus = "INPROGRESS"|"SUCCESS"|"ERROR"|string;
691
780
  export type OperationType = string;
@@ -750,12 +839,43 @@ declare namespace SsmSap {
750
839
  */
751
840
  OperationId?: OperationId;
752
841
  }
842
+ export type ReplicationMode = "PRIMARY"|"NONE"|"SYNC"|"SYNCMEM"|"ASYNC"|string;
843
+ export interface Resilience {
844
+ /**
845
+ * The tier of the component.
846
+ */
847
+ HsrTier?: String;
848
+ /**
849
+ * The replication mode of the component.
850
+ */
851
+ HsrReplicationMode?: ReplicationMode;
852
+ /**
853
+ * The operation mode of the component.
854
+ */
855
+ HsrOperationMode?: OperationMode;
856
+ /**
857
+ * The cluster status of the component.
858
+ */
859
+ ClusterStatus?: ClusterStatus;
860
+ }
753
861
  export type ResourceId = string;
754
862
  export type ResourceType = string;
755
863
  export type SAPInstanceNumber = string;
756
864
  export type SID = string;
757
865
  export type SecretId = string;
758
866
  export type SsmSapArn = string;
867
+ export interface StartApplicationRefreshInput {
868
+ /**
869
+ * The ID of the application.
870
+ */
871
+ ApplicationId: ApplicationId;
872
+ }
873
+ export interface StartApplicationRefreshOutput {
874
+ /**
875
+ * The ID of the operation.
876
+ */
877
+ OperationId?: OperationId;
878
+ }
759
879
  export type String = string;
760
880
  export type TagKey = string;
761
881
  export type TagKeyList = TagKey[];
@@ -799,6 +919,10 @@ declare namespace SsmSap {
799
919
  * The credentials to be removed.
800
920
  */
801
921
  CredentialsToRemove?: ApplicationCredentialList;
922
+ /**
923
+ * Installation of AWS Backint Agent for SAP HANA.
924
+ */
925
+ Backint?: BackintConfig;
802
926
  }
803
927
  export interface UpdateApplicationSettingsOutput {
804
928
  /**
@@ -1744,6 +1744,10 @@ declare namespace TranscribeService {
1744
1744
  * If using automatic language identification in your request and you want to apply a custom language model, a custom vocabulary, or a custom vocabulary filter, include LanguageIdSettings with the relevant sub-parameters (VocabularyName, LanguageModelName, and VocabularyFilterName). Note that multi-language identification (IdentifyMultipleLanguages) doesn't support custom language models. LanguageIdSettings supports two to five language codes. Each language code you include can have an associated custom language model, custom vocabulary, and custom vocabulary filter. The language codes that you specify must match the languages of the associated custom language models, custom vocabularies, and custom vocabulary filters. It's recommended that you include LanguageOptions when using LanguageIdSettings to ensure that the correct language dialect is identified. For example, if you specify a custom vocabulary that is in en-US but Amazon Transcribe determines that the language spoken in your media is en-AU, your custom vocabulary is not applied to your transcription. If you include LanguageOptions and include en-US as the only English language dialect, your custom vocabulary is applied to your transcription. If you want to include a custom language model with your request but do not want to use automatic language identification, use instead the parameter with the LanguageModelName sub-parameter. If you want to include a custom vocabulary or a custom vocabulary filter (or both) with your request but do not want to use automatic language identification, use instead the parameter with the VocabularyName or VocabularyFilterName (or both) sub-parameter.
1745
1745
  */
1746
1746
  LanguageIdSettings?: LanguageIdSettingsMap;
1747
+ /**
1748
+ * Enables toxic speech detection in your transcript. If you include ToxicityDetection in your request, you must also include ToxicityCategories. For information on the types of toxic speech Amazon Transcribe can detect, see Detecting toxic speech.
1749
+ */
1750
+ ToxicityDetection?: ToxicityDetection;
1747
1751
  }
1748
1752
  export interface StartTranscriptionJobResponse {
1749
1753
  /**
@@ -1807,6 +1811,15 @@ declare namespace TranscribeService {
1807
1811
  }
1808
1812
  export type TagValue = string;
1809
1813
  export type TimestampMilliseconds = number;
1814
+ export type ToxicityCategories = ToxicityCategory[];
1815
+ export type ToxicityCategory = "ALL"|string;
1816
+ export type ToxicityDetection = ToxicityDetectionSettings[];
1817
+ export interface ToxicityDetectionSettings {
1818
+ /**
1819
+ * If you include ToxicityDetection in your transcription request, you must also include ToxicityCategories. The only accepted value for this parameter is ALL.
1820
+ */
1821
+ ToxicityCategories: ToxicityCategories;
1822
+ }
1810
1823
  export type TranscribeArn = string;
1811
1824
  export interface Transcript {
1812
1825
  /**
@@ -1938,6 +1951,10 @@ declare namespace TranscribeService {
1938
1951
  * Provides the name and language of all custom language models, custom vocabularies, and custom vocabulary filters that you included in your request.
1939
1952
  */
1940
1953
  LanguageIdSettings?: LanguageIdSettingsMap;
1954
+ /**
1955
+ * Provides information about the toxicity detection settings applied to your transcription.
1956
+ */
1957
+ ToxicityDetection?: ToxicityDetection;
1941
1958
  }
1942
1959
  export type TranscriptionJobName = string;
1943
1960
  export type TranscriptionJobStatus = "QUEUED"|"IN_PROGRESS"|"FAILED"|"COMPLETED"|string;
@@ -1996,6 +2013,10 @@ declare namespace TranscribeService {
1996
2013
  * The language codes used to create your transcription job. This parameter is used with multi-language identification. For single-language identification, the singular version of this parameter, LanguageCode, is present.
1997
2014
  */
1998
2015
  LanguageCodes?: LanguageCodeList;
2016
+ /**
2017
+ * Indicates whether toxicity detection was enabled for the specified transcription job.
2018
+ */
2019
+ ToxicityDetection?: ToxicityDetection;
1999
2020
  }
2000
2021
  export type Type = "CONVERSATION"|"DICTATION"|string;
2001
2022
  export interface UntagResourceRequest {