cdk-comprehend-s3olap 2.0.94 → 2.0.96

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 (30) hide show
  1. package/.jsii +3 -3
  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 +13 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +651 -18
  8. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.paginators.json +11 -0
  9. package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +12 -3
  10. package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +45 -45
  11. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1374 -1105
  12. package/node_modules/aws-sdk/apis/evidently-2021-02-01.min.json +41 -15
  13. package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +174 -20
  14. package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +632 -0
  15. package/node_modules/aws-sdk/clients/customerprofiles.d.ts +22 -10
  16. package/node_modules/aws-sdk/clients/drs.d.ts +3 -2
  17. package/node_modules/aws-sdk/clients/ec2.d.ts +276 -5
  18. package/node_modules/aws-sdk/clients/evidently.d.ts +42 -5
  19. package/node_modules/aws-sdk/clients/kendra.d.ts +8 -8
  20. package/node_modules/aws-sdk/clients/transfer.d.ts +206 -0
  21. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  22. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
  23. package/node_modules/aws-sdk/dist/aws-sdk.js +1377 -1108
  24. package/node_modules/aws-sdk/dist/aws-sdk.min.js +70 -70
  25. package/node_modules/aws-sdk/lib/core.js +1 -1
  26. package/node_modules/aws-sdk/package.json +1 -1
  27. package/node_modules/get-intrinsic/CHANGELOG.md +7 -0
  28. package/node_modules/get-intrinsic/index.js +1 -1
  29. package/node_modules/get-intrinsic/package.json +7 -4
  30. package/package.json +4 -4
@@ -648,31 +648,31 @@ declare namespace Kendra {
648
648
  */
649
649
  NotFilter?: AttributeFilter;
650
650
  /**
651
- * Performs an equals operation on two document attributes.
651
+ * Performs an equals operation on two document attributes or metadata fields.
652
652
  */
653
653
  EqualsTo?: DocumentAttribute;
654
654
  /**
655
- * Returns true when a document contains all of the specified document attributes. This filter is only applicable to StringListValue metadata.
655
+ * Returns true when a document contains all of the specified document attributes or metadata fields. This filter is only applicable to StringListValue metadata.
656
656
  */
657
657
  ContainsAll?: DocumentAttribute;
658
658
  /**
659
- * Returns true when a document contains any of the specified document attributes. This filter is only applicable to StringListValue metadata.
659
+ * Returns true when a document contains any of the specified document attributes or metadata fields. This filter is only applicable to StringListValue metadata.
660
660
  */
661
661
  ContainsAny?: DocumentAttribute;
662
662
  /**
663
- * Performs a greater than operation on two document attributes. Use with a document attribute of type Date or Long.
663
+ * Performs a greater than operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
664
664
  */
665
665
  GreaterThan?: DocumentAttribute;
666
666
  /**
667
- * Performs a greater or equals than operation on two document attributes. Use with a document attribute of type Date or Long.
667
+ * Performs a greater or equals than operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
668
668
  */
669
669
  GreaterThanOrEquals?: DocumentAttribute;
670
670
  /**
671
- * Performs a less than operation on two document attributes. Use with a document attribute of type Date or Long.
671
+ * Performs a less than operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
672
672
  */
673
673
  LessThan?: DocumentAttribute;
674
674
  /**
675
- * Performs a less than or equals operation on two document attributes. Use with a document attribute of type Date or Long.
675
+ * Performs a less than or equals operation on two document attributes or metadata fields. Use with a document attribute of type Date or Long.
676
676
  */
677
677
  LessThanOrEquals?: DocumentAttribute;
678
678
  }
@@ -4289,7 +4289,7 @@ declare namespace Kendra {
4289
4289
  }
4290
4290
  export type SharePointOnlineAuthenticationType = "HTTP_BASIC"|"OAUTH2"|string;
4291
4291
  export type SharePointUrlList = Url[];
4292
- export type SharePointVersion = "SHAREPOINT_2013"|"SHAREPOINT_2016"|"SHAREPOINT_ONLINE"|string;
4292
+ export type SharePointVersion = "SHAREPOINT_2013"|"SHAREPOINT_2016"|"SHAREPOINT_ONLINE"|"SHAREPOINT_2019"|string;
4293
4293
  export type SharedDriveId = string;
4294
4294
  export type SinceCrawlDate = string;
4295
4295
  export type SiteId = string;
@@ -100,6 +100,14 @@ declare class Transfer extends Service {
100
100
  * Deletes the agreement that's specified in the provided ConnectorId.
101
101
  */
102
102
  deleteConnector(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
103
+ /**
104
+ * Deletes the host key that's specified in the HoskKeyId parameter.
105
+ */
106
+ deleteHostKey(params: Transfer.Types.DeleteHostKeyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
107
+ /**
108
+ * Deletes the host key that's specified in the HoskKeyId parameter.
109
+ */
110
+ deleteHostKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
103
111
  /**
104
112
  * Deletes the profile that's specified in the ProfileId parameter.
105
113
  */
@@ -180,6 +188,14 @@ declare class Transfer extends Service {
180
188
  * You can use DescribeExecution to check the details of the execution of the specified workflow.
181
189
  */
182
190
  describeExecution(callback?: (err: AWSError, data: Transfer.Types.DescribeExecutionResponse) => void): Request<Transfer.Types.DescribeExecutionResponse, AWSError>;
191
+ /**
192
+ * Returns the details of the host key that's specified by the HostKeyId and ServerId.
193
+ */
194
+ describeHostKey(params: Transfer.Types.DescribeHostKeyRequest, callback?: (err: AWSError, data: Transfer.Types.DescribeHostKeyResponse) => void): Request<Transfer.Types.DescribeHostKeyResponse, AWSError>;
195
+ /**
196
+ * Returns the details of the host key that's specified by the HostKeyId and ServerId.
197
+ */
198
+ describeHostKey(callback?: (err: AWSError, data: Transfer.Types.DescribeHostKeyResponse) => void): Request<Transfer.Types.DescribeHostKeyResponse, AWSError>;
183
199
  /**
184
200
  * Returns the details of the profile that's specified by the ProfileId.
185
201
  */
@@ -228,6 +244,14 @@ declare class Transfer extends Service {
228
244
  * Imports the signing and encryption certificates that you need to create local (AS2) profiles and partner profiles.
229
245
  */
230
246
  importCertificate(callback?: (err: AWSError, data: Transfer.Types.ImportCertificateResponse) => void): Request<Transfer.Types.ImportCertificateResponse, AWSError>;
247
+ /**
248
+ * Adds a host key to the server specified by the ServerId parameter.
249
+ */
250
+ importHostKey(params: Transfer.Types.ImportHostKeyRequest, callback?: (err: AWSError, data: Transfer.Types.ImportHostKeyResponse) => void): Request<Transfer.Types.ImportHostKeyResponse, AWSError>;
251
+ /**
252
+ * Adds a host key to the server specified by the ServerId parameter.
253
+ */
254
+ importHostKey(callback?: (err: AWSError, data: Transfer.Types.ImportHostKeyResponse) => void): Request<Transfer.Types.ImportHostKeyResponse, AWSError>;
231
255
  /**
232
256
  * Adds a Secure Shell (SSH) public key to a user account identified by a UserName value assigned to the specific file transfer protocol-enabled server, identified by ServerId. The response returns the UserName value, the ServerId value, and the name of the SshPublicKeyId.
233
257
  */
@@ -276,6 +300,14 @@ declare class Transfer extends Service {
276
300
  * Lists all executions for the specified workflow.
277
301
  */
278
302
  listExecutions(callback?: (err: AWSError, data: Transfer.Types.ListExecutionsResponse) => void): Request<Transfer.Types.ListExecutionsResponse, AWSError>;
303
+ /**
304
+ * Returns a list of host keys for the server specified by the ServerId paramter.
305
+ */
306
+ listHostKeys(params: Transfer.Types.ListHostKeysRequest, callback?: (err: AWSError, data: Transfer.Types.ListHostKeysResponse) => void): Request<Transfer.Types.ListHostKeysResponse, AWSError>;
307
+ /**
308
+ * Returns a list of host keys for the server specified by the ServerId paramter.
309
+ */
310
+ listHostKeys(callback?: (err: AWSError, data: Transfer.Types.ListHostKeysResponse) => void): Request<Transfer.Types.ListHostKeysResponse, AWSError>;
279
311
  /**
280
312
  * Returns a list of the profiles for your system. If you want to limit the results to a certain number, supply a value for the MaxResults parameter. If you ran the command previously and received a value for NextToken, you can supply that value to continue listing profiles from where you left off.
281
313
  */
@@ -412,6 +444,14 @@ declare class Transfer extends Service {
412
444
  * Updates some of the parameters for an existing connector. Provide the ConnectorId for the connector that you want to update, along with the new values for the parameters to update.
413
445
  */
414
446
  updateConnector(callback?: (err: AWSError, data: Transfer.Types.UpdateConnectorResponse) => void): Request<Transfer.Types.UpdateConnectorResponse, AWSError>;
447
+ /**
448
+ * Updates the description for the host key specified by the specified by the ServerId and HostKeyId parameters.
449
+ */
450
+ updateHostKey(params: Transfer.Types.UpdateHostKeyRequest, callback?: (err: AWSError, data: Transfer.Types.UpdateHostKeyResponse) => void): Request<Transfer.Types.UpdateHostKeyResponse, AWSError>;
451
+ /**
452
+ * Updates the description for the host key specified by the specified by the ServerId and HostKeyId parameters.
453
+ */
454
+ updateHostKey(callback?: (err: AWSError, data: Transfer.Types.UpdateHostKeyResponse) => void): Request<Transfer.Types.UpdateHostKeyResponse, AWSError>;
415
455
  /**
416
456
  * Updates some of the parameters for an existing profile. Provide the ProfileId for the profile that you want to update, along with the new values for the parameters to update.
417
457
  */
@@ -858,6 +898,16 @@ declare namespace Transfer {
858
898
  */
859
899
  ConnectorId: ConnectorId;
860
900
  }
901
+ export interface DeleteHostKeyRequest {
902
+ /**
903
+ * Provide the ID of the server that contains the host key that you are deleting.
904
+ */
905
+ ServerId: ServerId;
906
+ /**
907
+ * The ID of the host key that you are deleting.
908
+ */
909
+ HostKeyId: HostKeyId;
910
+ }
861
911
  export interface DeleteProfileRequest {
862
912
  /**
863
913
  * The ID of the profile that you are deleting.
@@ -990,6 +1040,22 @@ declare namespace Transfer {
990
1040
  */
991
1041
  Execution: DescribedExecution;
992
1042
  }
1043
+ export interface DescribeHostKeyRequest {
1044
+ /**
1045
+ * Provide the ID of the server that contains the host key that you want described.
1046
+ */
1047
+ ServerId: ServerId;
1048
+ /**
1049
+ * Provide the ID of the host key that you want described.
1050
+ */
1051
+ HostKeyId: HostKeyId;
1052
+ }
1053
+ export interface DescribeHostKeyResponse {
1054
+ /**
1055
+ * Returns the details for the specified host key.
1056
+ */
1057
+ HostKey: DescribedHostKey;
1058
+ }
993
1059
  export interface DescribeProfileRequest {
994
1060
  /**
995
1061
  * The identifier of the profile that you want described.
@@ -1246,6 +1312,36 @@ declare namespace Transfer {
1246
1312
  */
1247
1313
  Results?: ExecutionResults;
1248
1314
  }
1315
+ export interface DescribedHostKey {
1316
+ /**
1317
+ * The unique Amazon Resource Name (ARN) for the host key.
1318
+ */
1319
+ Arn: Arn;
1320
+ /**
1321
+ * A unique identifier for the host key.
1322
+ */
1323
+ HostKeyId?: HostKeyId;
1324
+ /**
1325
+ * The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.
1326
+ */
1327
+ HostKeyFingerprint?: HostKeyFingerprint;
1328
+ /**
1329
+ * The text description for this host key.
1330
+ */
1331
+ Description?: HostKeyDescription;
1332
+ /**
1333
+ * The encryption algorithm used for the host key. The Type is one of the following values: ssh-rsa ssh-ed25519 ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521
1334
+ */
1335
+ Type?: HostKeyType;
1336
+ /**
1337
+ * The date on which the host key was added to the server.
1338
+ */
1339
+ DateImported?: DateImported;
1340
+ /**
1341
+ * Key-value pairs that can be used to group and search for host keys.
1342
+ */
1343
+ Tags?: Tags;
1344
+ }
1249
1345
  export interface DescribedProfile {
1250
1346
  /**
1251
1347
  * The unique Amazon Resource Name (ARN) for the profile.
@@ -1551,7 +1647,10 @@ declare namespace Transfer {
1551
1647
  export type HomeDirectoryMappings = HomeDirectoryMapEntry[];
1552
1648
  export type HomeDirectoryType = "PATH"|"LOGICAL"|string;
1553
1649
  export type HostKey = string;
1650
+ export type HostKeyDescription = string;
1554
1651
  export type HostKeyFingerprint = string;
1652
+ export type HostKeyId = string;
1653
+ export type HostKeyType = string;
1555
1654
  export interface IdentityProviderDetails {
1556
1655
  /**
1557
1656
  * Provides the location of the service endpoint used to authenticate users.
@@ -1611,6 +1710,34 @@ declare namespace Transfer {
1611
1710
  */
1612
1711
  CertificateId: CertificateId;
1613
1712
  }
1713
+ export interface ImportHostKeyRequest {
1714
+ /**
1715
+ * Provide the ID of the server that contains the host key that you are importing.
1716
+ */
1717
+ ServerId: ServerId;
1718
+ /**
1719
+ * The public key portion of an SSH key pair. Transfer Family accepts RSA, ECDSA, and ED25519 keys.
1720
+ */
1721
+ HostKeyBody: HostKey;
1722
+ /**
1723
+ * Enter a text description to identify this host key.
1724
+ */
1725
+ Description?: HostKeyDescription;
1726
+ /**
1727
+ * Key-value pairs that can be used to group and search for host keys.
1728
+ */
1729
+ Tags?: Tags;
1730
+ }
1731
+ export interface ImportHostKeyResponse {
1732
+ /**
1733
+ * Returns the server ID that contains the imported key.
1734
+ */
1735
+ ServerId: ServerId;
1736
+ /**
1737
+ * Returns the host key ID for the imported key.
1738
+ */
1739
+ HostKeyId: HostKeyId;
1740
+ }
1614
1741
  export interface ImportSshPublicKeyRequest {
1615
1742
  /**
1616
1743
  * A system-assigned unique identifier for a server.
@@ -1769,6 +1896,34 @@ declare namespace Transfer {
1769
1896
  */
1770
1897
  Executions: ListedExecutions;
1771
1898
  }
1899
+ export interface ListHostKeysRequest {
1900
+ /**
1901
+ * The maximum number of host keys to return.
1902
+ */
1903
+ MaxResults?: MaxResults;
1904
+ /**
1905
+ * When there are additional results that were not returned, a NextToken parameter is returned. You can use that value for a subsequent call to ListHostKeys to continue listing results.
1906
+ */
1907
+ NextToken?: NextToken;
1908
+ /**
1909
+ * Provide the ID of the server that contains the host keys that you want to view.
1910
+ */
1911
+ ServerId: ServerId;
1912
+ }
1913
+ export interface ListHostKeysResponse {
1914
+ /**
1915
+ * Returns a token that you can use to call ListHostKeys again and receive additional results, if there are any.
1916
+ */
1917
+ NextToken?: NextToken;
1918
+ /**
1919
+ * Returns the server ID that contains the listed host keys.
1920
+ */
1921
+ ServerId: ServerId;
1922
+ /**
1923
+ * Returns an array, where each item contains the details of a host key.
1924
+ */
1925
+ HostKeys: ListedHostKeys;
1926
+ }
1772
1927
  export interface ListProfilesRequest {
1773
1928
  /**
1774
1929
  * The maximum number of profiles to return.
@@ -2028,6 +2183,33 @@ declare namespace Transfer {
2028
2183
  Status?: ExecutionStatus;
2029
2184
  }
2030
2185
  export type ListedExecutions = ListedExecution[];
2186
+ export interface ListedHostKey {
2187
+ /**
2188
+ * Specifies the unique Amazon Resource Name (ARN) of the host key.
2189
+ */
2190
+ Arn: Arn;
2191
+ /**
2192
+ *
2193
+ */
2194
+ HostKeyId?: HostKeyId;
2195
+ /**
2196
+ * The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.
2197
+ */
2198
+ Fingerprint?: HostKeyFingerprint;
2199
+ /**
2200
+ * The current description for the host key. You can change it by calling the UpdateHostKey operation and providing a new description.
2201
+ */
2202
+ Description?: HostKeyDescription;
2203
+ /**
2204
+ * The encryption algorithm used for the host key. The Type is one of the following values: ssh-rsa ssh-ed25519 ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521
2205
+ */
2206
+ Type?: HostKeyType;
2207
+ /**
2208
+ * The date on which the host key was added to the server.
2209
+ */
2210
+ DateImported?: DateImported;
2211
+ }
2212
+ export type ListedHostKeys = ListedHostKey[];
2031
2213
  export interface ListedProfile {
2032
2214
  /**
2033
2215
  * The Amazon Resource Name (ARN) of the specified profile.
@@ -2548,6 +2730,30 @@ declare namespace Transfer {
2548
2730
  */
2549
2731
  ConnectorId: ConnectorId;
2550
2732
  }
2733
+ export interface UpdateHostKeyRequest {
2734
+ /**
2735
+ * Provide the ID of the server that contains the host key that you are updating.
2736
+ */
2737
+ ServerId: ServerId;
2738
+ /**
2739
+ * Provide the ID of the host key that you are updating.
2740
+ */
2741
+ HostKeyId: HostKeyId;
2742
+ /**
2743
+ * Provide an updated description for the host key.
2744
+ */
2745
+ Description: HostKeyDescription;
2746
+ }
2747
+ export interface UpdateHostKeyResponse {
2748
+ /**
2749
+ * Returns the server ID for the server that contains the updated host key.
2750
+ */
2751
+ ServerId: ServerId;
2752
+ /**
2753
+ * Returns the host key ID for the updated host key.
2754
+ */
2755
+ HostKeyId: HostKeyId;
2756
+ }
2551
2757
  export interface UpdateProfileRequest {
2552
2758
  /**
2553
2759
  * The identifier of the profile object that you are updating.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1214.0',
86
+ VERSION: '2.1216.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -9640,7 +9640,7 @@ return /******/ (function(modules) { // webpackBootstrap
9640
9640
  throw new $TypeError('"allowMissing" argument must be a boolean');
9641
9641
  }
9642
9642
 
9643
- if ($exec(/^%?[^%]*%?$/g, name) === null) {
9643
+ if ($exec(/^%?[^%]*%?$/, name) === null) {
9644
9644
  throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');
9645
9645
  }
9646
9646
  var parts = stringToPath(name);