cdk-comprehend-s3olap 2.0.63 → 2.0.66

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 (45) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +16 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/amp-2020-08-01.min.json +176 -20
  8. package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.examples.json +5 -0
  9. package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.min.json +522 -0
  10. package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.paginators.json +14 -0
  11. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +265 -136
  12. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.paginators.json +5 -0
  13. package/node_modules/aws-sdk/apis/dlm-2018-01-12.min.json +15 -9
  14. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +627 -623
  15. package/node_modules/aws-sdk/apis/metadata.json +6 -0
  16. package/node_modules/aws-sdk/apis/personalize-runtime-2018-05-22.min.json +19 -2
  17. package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.examples.json +5 -0
  18. package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.min.json +1058 -0
  19. package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.paginators.json +34 -0
  20. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  21. package/node_modules/aws-sdk/clients/all.js +3 -1
  22. package/node_modules/aws-sdk/clients/amp.d.ts +128 -0
  23. package/node_modules/aws-sdk/clients/backupstorage.d.ts +469 -0
  24. package/node_modules/aws-sdk/clients/backupstorage.js +18 -0
  25. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +178 -0
  26. package/node_modules/aws-sdk/clients/dlm.d.ts +30 -25
  27. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -0
  28. package/node_modules/aws-sdk/clients/ivs.d.ts +31 -31
  29. package/node_modules/aws-sdk/clients/personalizeruntime.d.ts +30 -1
  30. package/node_modules/aws-sdk/clients/privatenetworks.d.ts +1092 -0
  31. package/node_modules/aws-sdk/clients/privatenetworks.js +18 -0
  32. package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
  33. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  34. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +84 -10
  35. package/node_modules/aws-sdk/dist/aws-sdk.js +655 -628
  36. package/node_modules/aws-sdk/dist/aws-sdk.min.js +65 -65
  37. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  38. package/node_modules/aws-sdk/lib/core.js +1 -1
  39. package/node_modules/aws-sdk/package.json +1 -1
  40. package/node_modules/esbuild/install.js +4 -4
  41. package/node_modules/esbuild/lib/main.js +7 -7
  42. package/node_modules/esbuild/package.json +22 -22
  43. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  44. package/node_modules/esbuild-linux-64/package.json +1 -1
  45. package/package.json +10 -10
@@ -0,0 +1,18 @@
1
+ require('../lib/node_loader');
2
+ var AWS = require('../lib/core');
3
+ var Service = AWS.Service;
4
+ var apiLoader = AWS.apiLoader;
5
+
6
+ apiLoader.services['backupstorage'] = {};
7
+ AWS.BackupStorage = Service.defineService('backupstorage', ['2018-04-10']);
8
+ Object.defineProperty(apiLoader.services['backupstorage'], '2018-04-10', {
9
+ get: function get() {
10
+ var model = require('../apis/backupstorage-2018-04-10.min.json');
11
+ model.paginators = require('../apis/backupstorage-2018-04-10.paginators.json').pagination;
12
+ return model;
13
+ },
14
+ enumerable: true,
15
+ configurable: true
16
+ });
17
+
18
+ module.exports = AWS.BackupStorage;
@@ -291,6 +291,14 @@ declare class ChimeSDKMessaging extends Service {
291
291
  * A list of the channels moderated by an AppInstanceUser. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
292
292
  */
293
293
  listChannelsModeratedByAppInstanceUser(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListChannelsModeratedByAppInstanceUserResponse) => void): Request<ChimeSDKMessaging.Types.ListChannelsModeratedByAppInstanceUserResponse, AWSError>;
294
+ /**
295
+ * Lists all the SubChannels in an elastic channel when given a channel ID. Available only to the app instance admins and channel moderators of elastic channels.
296
+ */
297
+ listSubChannels(params: ChimeSDKMessaging.Types.ListSubChannelsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListSubChannelsResponse) => void): Request<ChimeSDKMessaging.Types.ListSubChannelsResponse, AWSError>;
298
+ /**
299
+ * Lists all the SubChannels in an elastic channel when given a channel ID. Available only to the app instance admins and channel moderators of elastic channels.
300
+ */
301
+ listSubChannels(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.ListSubChannelsResponse) => void): Request<ChimeSDKMessaging.Types.ListSubChannelsResponse, AWSError>;
294
302
  /**
295
303
  * Lists the tags applied to an Amazon Chime SDK messaging resource.
296
304
  */
@@ -391,6 +399,10 @@ declare namespace ChimeSDKMessaging {
391
399
  * The time at which an AppInstanceUser last marked a channel as read.
392
400
  */
393
401
  ReadMarkerTimestamp?: Timestamp;
402
+ /**
403
+ * The ID of the SubChannel that the AppInstanceUser is a member of.
404
+ */
405
+ SubChannelId?: SubChannelId;
394
406
  }
395
407
  export interface AssociateChannelFlowRequest {
396
408
  /**
@@ -423,6 +435,10 @@ declare namespace ChimeSDKMessaging {
423
435
  * The ARN of the channel to which you're adding users.
424
436
  */
425
437
  ChannelArn?: ChimeArn;
438
+ /**
439
+ * The ID of the SubChannel.
440
+ */
441
+ SubChannelId?: SubChannelId;
426
442
  }
427
443
  export interface BatchCreateChannelMembershipError {
428
444
  /**
@@ -456,6 +472,10 @@ declare namespace ChimeSDKMessaging {
456
472
  * The AppInstanceUserArn of the user that makes the API call.
457
473
  */
458
474
  ChimeBearer: ChimeArn;
475
+ /**
476
+ * The ID of the SubChannel in the request. Only required when creating membership in a SubChannel for a moderator in an elastic channel.
477
+ */
478
+ SubChannelId?: SubChannelId;
459
479
  }
460
480
  export interface BatchCreateChannelMembershipResponse {
461
481
  /**
@@ -509,6 +529,10 @@ declare namespace ChimeSDKMessaging {
509
529
  * The ARN of the channel flow.
510
530
  */
511
531
  ChannelFlowArn?: ChimeArn;
532
+ /**
533
+ * The attributes required to configure and create an elastic channel. An elastic channel can support a maximum of 1-million members.
534
+ */
535
+ ElasticChannelConfiguration?: ElasticChannelConfiguration;
512
536
  }
513
537
  export interface ChannelAssociatedWithFlowSummary {
514
538
  /**
@@ -651,6 +675,10 @@ declare namespace ChimeSDKMessaging {
651
675
  * The time at which a channel membership was last updated.
652
676
  */
653
677
  LastUpdatedTimestamp?: Timestamp;
678
+ /**
679
+ * The ID of the SubChannel that a user belongs to.
680
+ */
681
+ SubChannelId?: SubChannelId;
654
682
  }
655
683
  export interface ChannelMembershipForAppInstanceUserSummary {
656
684
  /**
@@ -730,6 +758,10 @@ declare namespace ChimeSDKMessaging {
730
758
  * The attributes for the message, used for message filtering along with a FilterRule defined in the PushNotificationPreferences.
731
759
  */
732
760
  MessageAttributes?: MessageAttributeMap;
761
+ /**
762
+ * The ID of the SubChannel.
763
+ */
764
+ SubChannelId?: SubChannelId;
733
765
  }
734
766
  export interface ChannelMessageCallback {
735
767
  /**
@@ -752,6 +784,10 @@ declare namespace ChimeSDKMessaging {
752
784
  * The attributes for the message, used for message filtering along with a FilterRule defined in the PushNotificationPreferences.
753
785
  */
754
786
  MessageAttributes?: MessageAttributeMap;
787
+ /**
788
+ * The ID of the SubChannel.
789
+ */
790
+ SubChannelId?: SubChannelId;
755
791
  }
756
792
  export type ChannelMessagePersistenceType = "PERSISTENT"|"NON_PERSISTENT"|string;
757
793
  export type ChannelMessageStatus = "SENT"|"PENDING"|"FAILED"|"DENIED"|string;
@@ -947,6 +983,10 @@ declare namespace ChimeSDKMessaging {
947
983
  * The AppInstanceUserArn of the user that makes the API call.
948
984
  */
949
985
  ChimeBearer: ChimeArn;
986
+ /**
987
+ * The ID of the SubChannel in the request. Only required when creating membership in a SubChannel for a moderator in an elastic channel.
988
+ */
989
+ SubChannelId?: SubChannelId;
950
990
  }
951
991
  export interface CreateChannelMembershipResponse {
952
992
  /**
@@ -957,6 +997,10 @@ declare namespace ChimeSDKMessaging {
957
997
  * The ARN and metadata of the member being added.
958
998
  */
959
999
  Member?: Identity;
1000
+ /**
1001
+ * The ID of the SubChannel in the response.
1002
+ */
1003
+ SubChannelId?: SubChannelId;
960
1004
  }
961
1005
  export interface CreateChannelModeratorRequest {
962
1006
  /**
@@ -1027,6 +1071,10 @@ declare namespace ChimeSDKMessaging {
1027
1071
  * The ARNs of the channel moderators in the request.
1028
1072
  */
1029
1073
  ModeratorArns?: ChannelModeratorArns;
1074
+ /**
1075
+ * The attributes required to configure and create an elastic channel. An elastic channel can support a maximum of 1-million users, excluding moderators.
1076
+ */
1077
+ ElasticChannelConfiguration?: ElasticChannelConfiguration;
1030
1078
  }
1031
1079
  export interface CreateChannelResponse {
1032
1080
  /**
@@ -1067,6 +1115,10 @@ declare namespace ChimeSDKMessaging {
1067
1115
  * The AppInstanceUserArn of the user that makes the API call.
1068
1116
  */
1069
1117
  ChimeBearer: ChimeArn;
1118
+ /**
1119
+ * The ID of the SubChannel in the request. Only for use by moderators.
1120
+ */
1121
+ SubChannelId?: SubChannelId;
1070
1122
  }
1071
1123
  export interface DeleteChannelMessageRequest {
1072
1124
  /**
@@ -1081,6 +1133,10 @@ declare namespace ChimeSDKMessaging {
1081
1133
  * The AppInstanceUserArn of the user that makes the API call.
1082
1134
  */
1083
1135
  ChimeBearer: ChimeArn;
1136
+ /**
1137
+ * The ID of the SubChannel in the request. Only required when deleting messages in a SubChannel that the user belongs to.
1138
+ */
1139
+ SubChannelId?: SubChannelId;
1084
1140
  }
1085
1141
  export interface DeleteChannelModeratorRequest {
1086
1142
  /**
@@ -1105,6 +1161,10 @@ declare namespace ChimeSDKMessaging {
1105
1161
  * The AppInstanceUserArn of the user that makes the API call.
1106
1162
  */
1107
1163
  ChimeBearer: ChimeArn;
1164
+ /**
1165
+ * The ID of the SubChannel in the request.
1166
+ */
1167
+ SubChannelId?: SubChannelId;
1108
1168
  }
1109
1169
  export interface DescribeChannelBanRequest {
1110
1170
  /**
@@ -1171,6 +1231,10 @@ declare namespace ChimeSDKMessaging {
1171
1231
  * The AppInstanceUserArn of the user that makes the API call.
1172
1232
  */
1173
1233
  ChimeBearer: ChimeArn;
1234
+ /**
1235
+ * The ID of the SubChannel in the request. The response contains an ElasticChannelConfiguration object. Only required to get a user’s SubChannel membership details.
1236
+ */
1237
+ SubChannelId?: SubChannelId;
1174
1238
  }
1175
1239
  export interface DescribeChannelMembershipResponse {
1176
1240
  /**
@@ -1248,6 +1312,20 @@ declare namespace ChimeSDKMessaging {
1248
1312
  */
1249
1313
  ChimeBearer: ChimeArn;
1250
1314
  }
1315
+ export interface ElasticChannelConfiguration {
1316
+ /**
1317
+ * The maximum number of SubChannels that you want to allow in the elastic channel.
1318
+ */
1319
+ MaximumSubChannels: MaximumSubChannels;
1320
+ /**
1321
+ * The maximum number of members allowed in a SubChannel.
1322
+ */
1323
+ TargetMembershipsPerSubChannel: TargetMembershipsPerSubChannel;
1324
+ /**
1325
+ * The minimum allowed percentage of TargetMembershipsPerSubChannel users. Ceil of the calculated value is used in balancing members among SubChannels of the elastic channel.
1326
+ */
1327
+ MinimumMembershipPercentage: MinimumMembershipPercentage;
1328
+ }
1251
1329
  export type ErrorCode = "BadRequest"|"Conflict"|"Forbidden"|"NotFound"|"PreconditionFailed"|"ResourceLimitExceeded"|"ServiceFailure"|"AccessDenied"|"ServiceUnavailable"|"Throttled"|"Throttling"|"Unauthorized"|"Unprocessable"|"VoiceConnectorGroupAssociationsExist"|"PhoneNumberAssociationsExist"|string;
1252
1330
  export type FallbackAction = "CONTINUE"|"ABORT"|string;
1253
1331
  export type FilterRule = string;
@@ -1292,6 +1370,10 @@ declare namespace ChimeSDKMessaging {
1292
1370
  * The AppInstanceUserArn of the user that makes the API call.
1293
1371
  */
1294
1372
  ChimeBearer: ChimeArn;
1373
+ /**
1374
+ * The ID of the SubChannel in the request. Only required when getting messages in a SubChannel that the user belongs to.
1375
+ */
1376
+ SubChannelId?: SubChannelId;
1295
1377
  }
1296
1378
  export interface GetChannelMessageResponse {
1297
1379
  /**
@@ -1312,6 +1394,10 @@ declare namespace ChimeSDKMessaging {
1312
1394
  * The AppInstanceUserArn of the user making the API call.
1313
1395
  */
1314
1396
  ChimeBearer: ChimeArn;
1397
+ /**
1398
+ * The ID of the SubChannel in the request. Only required when getting message status in a SubChannel that the user belongs to.
1399
+ */
1400
+ SubChannelId?: SubChannelId;
1315
1401
  }
1316
1402
  export interface GetChannelMessageStatusResponse {
1317
1403
  /**
@@ -1454,6 +1540,10 @@ declare namespace ChimeSDKMessaging {
1454
1540
  * The AppInstanceUserArn of the user that makes the API call.
1455
1541
  */
1456
1542
  ChimeBearer: ChimeArn;
1543
+ /**
1544
+ * The ID of the SubChannel in the request. Only required when listing a user's memberships in a particular sub-channel of an elastic channel.
1545
+ */
1546
+ SubChannelId?: SubChannelId;
1457
1547
  }
1458
1548
  export interface ListChannelMembershipsResponse {
1459
1549
  /**
@@ -1498,6 +1588,10 @@ declare namespace ChimeSDKMessaging {
1498
1588
  * The AppInstanceUserArn of the user that makes the API call.
1499
1589
  */
1500
1590
  ChimeBearer: ChimeArn;
1591
+ /**
1592
+ * The ID of the SubChannel in the request. Only required when listing the messages in a SubChannel that the user belongs to.
1593
+ */
1594
+ SubChannelId?: SubChannelId;
1501
1595
  }
1502
1596
  export interface ListChannelMessagesResponse {
1503
1597
  /**
@@ -1512,6 +1606,10 @@ declare namespace ChimeSDKMessaging {
1512
1606
  * The information about, and content of, each requested message.
1513
1607
  */
1514
1608
  ChannelMessages?: ChannelMessageSummaryList;
1609
+ /**
1610
+ * The ID of the SubChannel in the response.
1611
+ */
1612
+ SubChannelId?: SubChannelId;
1515
1613
  }
1516
1614
  export interface ListChannelModeratorsRequest {
1517
1615
  /**
@@ -1629,6 +1727,38 @@ declare namespace ChimeSDKMessaging {
1629
1727
  */
1630
1728
  NextToken?: NextToken;
1631
1729
  }
1730
+ export interface ListSubChannelsRequest {
1731
+ /**
1732
+ * The ARN of elastic channel.
1733
+ */
1734
+ ChannelArn: ChimeArn;
1735
+ /**
1736
+ * The AppInstanceUserArn of the user making the API call.
1737
+ */
1738
+ ChimeBearer: ChimeArn;
1739
+ /**
1740
+ * The maximum number of sub-channels that you want to return.
1741
+ */
1742
+ MaxResults?: MaxResults;
1743
+ /**
1744
+ * The token passed by previous API calls until all requested sub-channels are returned.
1745
+ */
1746
+ NextToken?: NextToken;
1747
+ }
1748
+ export interface ListSubChannelsResponse {
1749
+ /**
1750
+ * The ARN of elastic channel.
1751
+ */
1752
+ ChannelArn?: ChimeArn;
1753
+ /**
1754
+ * The information about each sub-channel.
1755
+ */
1756
+ SubChannels?: SubChannelSummaryList;
1757
+ /**
1758
+ * The token passed by previous API calls until all requested sub-channels are returned.
1759
+ */
1760
+ NextToken?: NextToken;
1761
+ }
1632
1762
  export interface ListTagsForResourceRequest {
1633
1763
  /**
1634
1764
  * The ARN of the resource.
@@ -1642,8 +1772,10 @@ declare namespace ChimeSDKMessaging {
1642
1772
  Tags?: TagList;
1643
1773
  }
1644
1774
  export type MaxResults = number;
1775
+ export type MaximumSubChannels = number;
1645
1776
  export type MemberArns = ChimeArn[];
1646
1777
  export type Members = Identity[];
1778
+ export type MembershipCount = number;
1647
1779
  export type MessageAttributeMap = {[key: string]: MessageAttributeValue};
1648
1780
  export type MessageAttributeName = string;
1649
1781
  export type MessageAttributeStringValue = string;
@@ -1662,6 +1794,7 @@ declare namespace ChimeSDKMessaging {
1662
1794
  Url?: UrlType;
1663
1795
  }
1664
1796
  export type Metadata = string;
1797
+ export type MinimumMembershipPercentage = number;
1665
1798
  export type NextToken = string;
1666
1799
  export type NonEmptyContent = string;
1667
1800
  export type NonEmptyResourceName = string;
@@ -1763,6 +1896,10 @@ declare namespace ChimeSDKMessaging {
1763
1896
  * The AppInstanceUserArn of the user that makes the API call.
1764
1897
  */
1765
1898
  ChimeBearer: ChimeArn;
1899
+ /**
1900
+ * The ID of the SubChannel in the request.
1901
+ */
1902
+ SubChannelId?: SubChannelId;
1766
1903
  }
1767
1904
  export interface RedactChannelMessageResponse {
1768
1905
  /**
@@ -1773,6 +1910,10 @@ declare namespace ChimeSDKMessaging {
1773
1910
  * The ID of the message being redacted.
1774
1911
  */
1775
1912
  MessageId?: MessageId;
1913
+ /**
1914
+ * The ID of the SubChannel in the response. Only required when redacting messages in a SubChannel that the user belongs to.
1915
+ */
1916
+ SubChannelId?: SubChannelId;
1776
1917
  }
1777
1918
  export type ResourceName = string;
1778
1919
  export interface SearchChannelsRequest {
@@ -1859,6 +2000,10 @@ declare namespace ChimeSDKMessaging {
1859
2000
  * The attributes for the message, used for message filtering along with a FilterRule defined in the PushNotificationPreferences.
1860
2001
  */
1861
2002
  MessageAttributes?: MessageAttributeMap;
2003
+ /**
2004
+ * The ID of the SubChannel in the request.
2005
+ */
2006
+ SubChannelId?: SubChannelId;
1862
2007
  }
1863
2008
  export interface SendChannelMessageResponse {
1864
2009
  /**
@@ -1873,10 +2018,26 @@ declare namespace ChimeSDKMessaging {
1873
2018
  * The status of the channel message.
1874
2019
  */
1875
2020
  Status?: ChannelMessageStatusStructure;
2021
+ /**
2022
+ * The ID of the SubChannel in the response.
2023
+ */
2024
+ SubChannelId?: SubChannelId;
1876
2025
  }
1877
2026
  export type SortOrder = "ASCENDING"|"DESCENDING"|string;
1878
2027
  export type StatusDetail = string;
1879
2028
  export type String = string;
2029
+ export type SubChannelId = string;
2030
+ export interface SubChannelSummary {
2031
+ /**
2032
+ * The unique ID of a SubChannel.
2033
+ */
2034
+ SubChannelId?: SubChannelId;
2035
+ /**
2036
+ * The number of members in a SubChannel.
2037
+ */
2038
+ MembershipCount?: MembershipCount;
2039
+ }
2040
+ export type SubChannelSummaryList = SubChannelSummary[];
1880
2041
  export interface Tag {
1881
2042
  /**
1882
2043
  * The key in a tag.
@@ -1901,6 +2062,7 @@ declare namespace ChimeSDKMessaging {
1901
2062
  Tags: TagList;
1902
2063
  }
1903
2064
  export type TagValue = string;
2065
+ export type TargetMembershipsPerSubChannel = number;
1904
2066
  export type Timestamp = Date;
1905
2067
  export interface UntagResourceRequest {
1906
2068
  /**
@@ -1953,6 +2115,10 @@ declare namespace ChimeSDKMessaging {
1953
2115
  * The AppInstanceUserArn of the user that makes the API call.
1954
2116
  */
1955
2117
  ChimeBearer: ChimeArn;
2118
+ /**
2119
+ * The ID of the SubChannel in the request. Only required when updating messages in a SubChannel that the user belongs to.
2120
+ */
2121
+ SubChannelId?: SubChannelId;
1956
2122
  }
1957
2123
  export interface UpdateChannelMessageResponse {
1958
2124
  /**
@@ -1967,6 +2133,10 @@ declare namespace ChimeSDKMessaging {
1967
2133
  * The status of the message update.
1968
2134
  */
1969
2135
  Status?: ChannelMessageStatusStructure;
2136
+ /**
2137
+ * The ID of the SubChannel in the response.
2138
+ */
2139
+ SubChannelId?: SubChannelId;
1970
2140
  }
1971
2141
  export interface UpdateChannelReadMarkerRequest {
1972
2142
  /**
@@ -1977,12 +2147,20 @@ declare namespace ChimeSDKMessaging {
1977
2147
  * The AppInstanceUserArn of the user that makes the API call.
1978
2148
  */
1979
2149
  ChimeBearer: ChimeArn;
2150
+ /**
2151
+ * The ID of the SubChannel in the request.
2152
+ */
2153
+ SubChannelId?: SubChannelId;
1980
2154
  }
1981
2155
  export interface UpdateChannelReadMarkerResponse {
1982
2156
  /**
1983
2157
  * The ARN of the channel.
1984
2158
  */
1985
2159
  ChannelArn?: ChimeArn;
2160
+ /**
2161
+ * The ID of the SubChannel in the response.
2162
+ */
2163
+ SubChannelId?: SubChannelId;
1986
2164
  }
1987
2165
  export interface UpdateChannelRequest {
1988
2166
  /**
@@ -126,7 +126,7 @@ declare namespace DLM {
126
126
  }
127
127
  export interface CreateRule {
128
128
  /**
129
- * Specifies the destination for snapshots created by the policy. To create snapshots in the same Region as the source resource, specify CLOUD. To create snapshots on the same Outpost as the source resource, specify OUTPOST_LOCAL. If you omit this parameter, CLOUD is used by default. If the policy targets resources in an Amazon Web Services Region, then you must create snapshots in the same Region as the source resource. If the policy targets resources on an Outpost, then you can create snapshots on the same Outpost as the source resource, or in the Region of that Outpost.
129
+ * [Snapshot policies only] Specifies the destination for snapshots created by the policy. To create snapshots in the same Region as the source resource, specify CLOUD. To create snapshots on the same Outpost as the source resource, specify OUTPOST_LOCAL. If you omit this parameter, CLOUD is used by default. If the policy targets resources in an Amazon Web Services Region, then you must create snapshots in the same Region as the source resource. If the policy targets resources on an Outpost, then you can create snapshots on the same Outpost as the source resource, or in the Region of that Outpost.
130
130
  */
131
131
  Location?: LocationValues;
132
132
  /**
@@ -165,23 +165,23 @@ declare namespace DLM {
165
165
  */
166
166
  Interval?: Interval;
167
167
  /**
168
- * The unit of time in which to measure the Interval.
168
+ * The unit of time in which to measure the Interval. For example, to deprecate a cross-Region AMI copy after 3 months, specify Interval=3 and IntervalUnit=MONTHS.
169
169
  */
170
170
  IntervalUnit?: RetentionIntervalUnitValues;
171
171
  }
172
172
  export interface CrossRegionCopyRetainRule {
173
173
  /**
174
- * The amount of time to retain each snapshot. The maximum is 100 years. This is equivalent to 1200 months, 5200 weeks, or 36500 days.
174
+ * The amount of time to retain a cross-Region snapshot or AMI copy. The maximum is 100 years. This is equivalent to 1200 months, 5200 weeks, or 36500 days.
175
175
  */
176
176
  Interval?: Interval;
177
177
  /**
178
- * The unit of time for time-based retention.
178
+ * The unit of time for time-based retention. For example, to retain a cross-Region copy for 3 months, specify Interval=3 and IntervalUnit=MONTHS.
179
179
  */
180
180
  IntervalUnit?: RetentionIntervalUnitValues;
181
181
  }
182
182
  export interface CrossRegionCopyRule {
183
183
  /**
184
- * Avoid using this parameter when creating new policies. Instead, use Target to specify a target Region or a target Outpost for snapshot copies. For policies created before the Target parameter was introduced, this parameter indicates the target Region for snapshot copies.
184
+ * Avoid using this parameter when creating new policies. Instead, use Target to specify a target Region or a target Outpost for snapshot copies. For policies created before the Target parameter was introduced, this parameter indicates the target Region for snapshot copies.
185
185
  */
186
186
  TargetRegion?: TargetRegion;
187
187
  /**
@@ -197,15 +197,15 @@ declare namespace DLM {
197
197
  */
198
198
  CmkArn?: CmkArn;
199
199
  /**
200
- * Indicates whether to copy all user-defined tags from the source snapshot to the cross-Region snapshot copy.
200
+ * Indicates whether to copy all user-defined tags from the source snapshot or AMI to the cross-Region copy.
201
201
  */
202
202
  CopyTags?: CopyTagsNullable;
203
203
  /**
204
- * The retention rule that indicates how long snapshot copies are to be retained in the destination Region.
204
+ * The retention rule that indicates how long the cross-Region snapshot or AMI copies are to be retained in the destination Region.
205
205
  */
206
206
  RetainRule?: CrossRegionCopyRetainRule;
207
207
  /**
208
- * The AMI deprecation rule for cross-Region AMI copies created by the rule.
208
+ * [AMI policies only] The AMI deprecation rule for cross-Region AMI copies created by the rule.
209
209
  */
210
210
  DeprecateRule?: CrossRegionCopyDeprecateRule;
211
211
  }
@@ -271,6 +271,7 @@ declare namespace DLM {
271
271
  export type EventSourceValues = "MANAGED_CWE"|string;
272
272
  export type EventTypeValues = "shareSnapshot"|string;
273
273
  export type ExcludeBootVolume = boolean;
274
+ export type ExcludeDataVolumeTagList = Tag[];
274
275
  export type ExecutionRoleArn = string;
275
276
  export interface FastRestoreRule {
276
277
  /**
@@ -393,7 +394,7 @@ declare namespace DLM {
393
394
  */
394
395
  Tags?: TagMap;
395
396
  /**
396
- * The type of policy. EBS_SNAPSHOT_MANAGEMENT indicates that the policy manages the lifecycle of Amazon EBS snapshots. IMAGE_MANAGEMENT indicates that the policy manages the lifecycle of EBS-backed AMIs.
397
+ * The type of policy. EBS_SNAPSHOT_MANAGEMENT indicates that the policy manages the lifecycle of Amazon EBS snapshots. IMAGE_MANAGEMENT indicates that the policy manages the lifecycle of EBS-backed AMIs. EVENT_BASED_POLICY indicates that the policy automates cross-account snapshot copies for snapshots that are shared with your account.
397
398
  */
398
399
  PolicyType?: PolicyTypeValues;
399
400
  }
@@ -414,47 +415,51 @@ declare namespace DLM {
414
415
  export type NoReboot = boolean;
415
416
  export interface Parameters {
416
417
  /**
417
- * [EBS Snapshot Management Instance policies only] Indicates whether to exclude the root volume from snapshots created using CreateSnapshots. The default is false.
418
+ * [Snapshot policies that target instances only] Indicates whether to exclude the root volume from multi-volume snapshot sets. The default is false. If you specify true, then the root volumes attached to targeted instances will be excluded from the multi-volume snapshot sets created by the policy.
418
419
  */
419
420
  ExcludeBootVolume?: ExcludeBootVolume;
420
421
  /**
421
- * Applies to AMI lifecycle policies only. Indicates whether targeted instances are rebooted when the lifecycle policy runs. true indicates that targeted instances are not rebooted when the policy runs. false indicates that target instances are rebooted when the policy runs. The default is true (instances are not rebooted).
422
+ * [AMI policies only] Indicates whether targeted instances are rebooted when the lifecycle policy runs. true indicates that targeted instances are not rebooted when the policy runs. false indicates that target instances are rebooted when the policy runs. The default is true (instances are not rebooted).
422
423
  */
423
424
  NoReboot?: NoReboot;
425
+ /**
426
+ * [Snapshot policies that target instances only] The tags used to identify data (non-root) volumes to exclude from multi-volume snapshot sets. If you create a snapshot lifecycle policy that targets instances and you specify tags for this parameter, then data volumes with the specified tags that are attached to targeted instances will be excluded from the multi-volume snapshot sets created by the policy.
427
+ */
428
+ ExcludeDataVolumeTags?: ExcludeDataVolumeTagList;
424
429
  }
425
430
  export type PolicyArn = string;
426
431
  export type PolicyDescription = string;
427
432
  export interface PolicyDetails {
428
433
  /**
429
- * The valid target resource types and actions a policy can manage. Specify EBS_SNAPSHOT_MANAGEMENT to create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify IMAGE_MANAGEMENT to create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. Specify EVENT_BASED_POLICY to create an event-based policy that performs specific actions when a defined event occurs in your Amazon Web Services account. The default is EBS_SNAPSHOT_MANAGEMENT.
434
+ * [All policy types] The valid target resource types and actions a policy can manage. Specify EBS_SNAPSHOT_MANAGEMENT to create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify IMAGE_MANAGEMENT to create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. Specify EVENT_BASED_POLICY to create an event-based policy that performs specific actions when a defined event occurs in your Amazon Web Services account. The default is EBS_SNAPSHOT_MANAGEMENT.
430
435
  */
431
436
  PolicyType?: PolicyTypeValues;
432
437
  /**
433
- * The target resource type for snapshot and AMI lifecycle policies. Use VOLUME to create snapshots of individual volumes or use INSTANCE to create multi-volume snapshots from the volumes for an instance. This parameter is required for snapshot and AMI policies only. If you are creating an event-based policy, omit this parameter.
438
+ * [Snapshot policies only] The target resource type for snapshot and AMI lifecycle policies. Use VOLUME to create snapshots of individual volumes or use INSTANCE to create multi-volume snapshots from the volumes for an instance.
434
439
  */
435
440
  ResourceTypes?: ResourceTypeValuesList;
436
441
  /**
437
- * The location of the resources to backup. If the source resources are located in an Amazon Web Services Region, specify CLOUD. If the source resources are located on an Outpost in your account, specify OUTPOST. If you specify OUTPOST, Amazon Data Lifecycle Manager backs up all resources of the specified type with matching target tags across all of the Outposts in your account.
442
+ * [Snapshot and AMI policies only] The location of the resources to backup. If the source resources are located in an Amazon Web Services Region, specify CLOUD. If the source resources are located on an Outpost in your account, specify OUTPOST. If you specify OUTPOST, Amazon Data Lifecycle Manager backs up all resources of the specified type with matching target tags across all of the Outposts in your account.
438
443
  */
439
444
  ResourceLocations?: ResourceLocationList;
440
445
  /**
441
- * The single tag that identifies targeted resources for this policy. This parameter is required for snapshot and AMI policies only. If you are creating an event-based policy, omit this parameter.
446
+ * [Snapshot and AMI policies only] The single tag that identifies targeted resources for this policy.
442
447
  */
443
448
  TargetTags?: TargetTagList;
444
449
  /**
445
- * The schedules of policy-defined actions for snapshot and AMI lifecycle policies. A policy can have up to four schedules—one mandatory schedule and up to three optional schedules. This parameter is required for snapshot and AMI policies only. If you are creating an event-based policy, omit this parameter.
450
+ * [Snapshot and AMI policies only] The schedules of policy-defined actions for snapshot and AMI lifecycle policies. A policy can have up to four schedules—one mandatory schedule and up to three optional schedules.
446
451
  */
447
452
  Schedules?: ScheduleList;
448
453
  /**
449
- * A set of optional parameters for snapshot and AMI lifecycle policies. This parameter is required for snapshot and AMI policies only. If you are creating an event-based policy, omit this parameter.
454
+ * [Snapshot and AMI policies only] A set of optional parameters for snapshot and AMI lifecycle policies. If you are modifying a policy that was created or previously modified using the Amazon Data Lifecycle Manager console, then you must include this parameter and specify either the default values or the new values that you require. You can't omit this parameter or set its values to null.
450
455
  */
451
456
  Parameters?: Parameters;
452
457
  /**
453
- * The event that triggers the event-based policy. This parameter is required for event-based policies only. If you are creating a snapshot or AMI policy, omit this parameter.
458
+ * [Event-based policies only] The event that activates the event-based policy.
454
459
  */
455
460
  EventSource?: EventSource;
456
461
  /**
457
- * The actions to be performed when the event-based policy is triggered. You can specify only one action per policy. This parameter is required for event-based policies only. If you are creating a snapshot or AMI policy, omit this parameter.
462
+ * [Event-based policies only] The actions to be performed when the event-based policy is activated. You can specify only one action per policy.
458
463
  */
459
464
  Actions?: ActionList;
460
465
  }
@@ -494,7 +499,7 @@ declare namespace DLM {
494
499
  */
495
500
  TagsToAdd?: TagsToAddList;
496
501
  /**
497
- * A collection of key/value pairs with values determined dynamically when the policy is executed. Keys may be any valid Amazon EC2 tag key. Values must be in one of the two following formats: $(instance-id) or $(timestamp). Variable tags are only valid for EBS Snapshot Management – Instance policies.
502
+ * [AMI policies and snapshot policies that target instances only] A collection of key/value pairs with values determined dynamically when the policy is executed. Keys may be any valid Amazon EC2 tag key. Values must be in one of the two following formats: $(instance-id) or $(timestamp). Variable tags are only valid for EBS Snapshot Management – Instance policies.
498
503
  */
499
504
  VariableTags?: VariableTagsList;
500
505
  /**
@@ -502,23 +507,23 @@ declare namespace DLM {
502
507
  */
503
508
  CreateRule?: CreateRule;
504
509
  /**
505
- * The retention rule.
510
+ * The retention rule for snapshots or AMIs created by the policy.
506
511
  */
507
512
  RetainRule?: RetainRule;
508
513
  /**
509
- * The rule for enabling fast snapshot restore.
514
+ * [Snapshot policies only] The rule for enabling fast snapshot restore.
510
515
  */
511
516
  FastRestoreRule?: FastRestoreRule;
512
517
  /**
513
- * The rule for cross-Region snapshot copies. You can only specify cross-Region copy rules for policies that create snapshots in a Region. If the policy creates snapshots on an Outpost, then you cannot copy the snapshots to a Region or to an Outpost. If the policy creates snapshots in a Region, then snapshots can be copied to up to three Regions or Outposts.
518
+ * Specifies a rule for copying snapshots or AMIs across regions. You can't specify cross-Region copy rules for policies that create snapshots on an Outpost. If the policy creates snapshots in a Region, then snapshots can be copied to up to three Regions or Outposts.
514
519
  */
515
520
  CrossRegionCopyRules?: CrossRegionCopyRules;
516
521
  /**
517
- * The rule for sharing snapshots with other Amazon Web Services accounts.
522
+ * [Snapshot policies only] The rule for sharing snapshots with other Amazon Web Services accounts.
518
523
  */
519
524
  ShareRules?: ShareRules;
520
525
  /**
521
- * The AMI deprecation rule for the schedule.
526
+ * [AMI policies only] The AMI deprecation rule for the schedule.
522
527
  */
523
528
  DeprecateRule?: DeprecateRule;
524
529
  }
@@ -21498,6 +21498,7 @@ declare namespace EC2 {
21498
21498
  * Excludes the root volume from being snapshotted.
21499
21499
  */
21500
21500
  ExcludeBootVolume?: Boolean;
21501
+ ExcludeDataVolumeIds?: VolumeIdStringList;
21501
21502
  }
21502
21503
  export interface InstanceState {
21503
21504
  /**