cdk-comprehend-s3olap 2.0.155 → 2.0.157

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 (34) 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 +14 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +3 -0
  8. package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.min.json +75 -12
  9. package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +6 -0
  11. package/node_modules/aws-sdk/apis/kafka-2018-11-14.min.json +6 -2
  12. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +104 -90
  13. package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.min.json +159 -43
  14. package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +48 -47
  15. package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +194 -115
  16. package/node_modules/aws-sdk/clients/athena.d.ts +4 -0
  17. package/node_modules/aws-sdk/clients/codecatalyst.d.ts +66 -0
  18. package/node_modules/aws-sdk/clients/detective.d.ts +1 -1
  19. package/node_modules/aws-sdk/clients/directconnect.d.ts +2 -2
  20. package/node_modules/aws-sdk/clients/glue.d.ts +8 -0
  21. package/node_modules/aws-sdk/clients/kafka.d.ts +2 -2
  22. package/node_modules/aws-sdk/clients/rekognition.d.ts +19 -1
  23. package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +154 -45
  24. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +3 -3
  25. package/node_modules/aws-sdk/clients/transfer.d.ts +52 -44
  26. package/node_modules/aws-sdk/clients/wafv2.d.ts +103 -15
  27. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +98 -73
  28. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +1952 -1902
  29. package/node_modules/aws-sdk/dist/aws-sdk.js +111 -93
  30. package/node_modules/aws-sdk/dist/aws-sdk.min.js +30 -30
  31. package/node_modules/aws-sdk/lib/core.js +1 -1
  32. package/node_modules/aws-sdk/lib/region_config.js +1 -0
  33. package/node_modules/aws-sdk/package.json +1 -1
  34. package/package.json +3 -3
@@ -1141,6 +1141,10 @@ declare namespace Athena {
1141
1141
  * Contains additional notebook engine MAP<string, string> parameter mappings in the form of key-value pairs. To specify an Athena notebook that the Jupyter server will download and serve, specify a value for the StartSessionRequest$NotebookVersion field, and then add a key named NotebookId to AdditionalConfigs that has the value of the Athena notebook ID.
1142
1142
  */
1143
1143
  AdditionalConfigs?: ParametersMap;
1144
+ /**
1145
+ * Specifies custom jar files and Spark properties for use cases like cluster encryption, table formats, and general Spark tuning.
1146
+ */
1147
+ SparkProperties?: ParametersMap;
1144
1148
  }
1145
1149
  export interface EngineVersion {
1146
1150
  /**
@@ -115,6 +115,14 @@ declare class CodeCatalyst extends Service {
115
115
  * Lists all personal access tokens (PATs) associated with the user who calls the API. You can only list PATs associated with your Amazon Web Services Builder ID.
116
116
  */
117
117
  listAccessTokens(callback?: (err: AWSError, data: CodeCatalyst.Types.ListAccessTokensResponse) => void): Request<CodeCatalyst.Types.ListAccessTokensResponse, AWSError>;
118
+ /**
119
+ * Retrieves a list of active sessions for a Dev Environment in a project.
120
+ */
121
+ listDevEnvironmentSessions(params: CodeCatalyst.Types.ListDevEnvironmentSessionsRequest, callback?: (err: AWSError, data: CodeCatalyst.Types.ListDevEnvironmentSessionsResponse) => void): Request<CodeCatalyst.Types.ListDevEnvironmentSessionsResponse, AWSError>;
122
+ /**
123
+ * Retrieves a list of active sessions for a Dev Environment in a project.
124
+ */
125
+ listDevEnvironmentSessions(callback?: (err: AWSError, data: CodeCatalyst.Types.ListDevEnvironmentSessionsResponse) => void): Request<CodeCatalyst.Types.ListDevEnvironmentSessionsResponse, AWSError>;
118
126
  /**
119
127
  * Retrieves a list of Dev Environments in a project.
120
128
  */
@@ -450,7 +458,31 @@ declare namespace CodeCatalyst {
450
458
  */
451
459
  executeCommandSessionConfiguration?: ExecuteCommandSessionConfiguration;
452
460
  }
461
+ export interface DevEnvironmentSessionSummary {
462
+ /**
463
+ * The name of the space.
464
+ */
465
+ spaceName: NameString;
466
+ /**
467
+ * The name of the project in the space.
468
+ */
469
+ projectName: NameString;
470
+ /**
471
+ * The system-generated unique ID of the Dev Environment.
472
+ */
473
+ devEnvironmentId: Uuid;
474
+ /**
475
+ * The date and time the session started, in coordinated universal time (UTC) timestamp format as specified in RFC 3339
476
+ */
477
+ startedTime: SyntheticTimestamp_date_time;
478
+ /**
479
+ * The system-generated unique ID of the Dev Environment session.
480
+ */
481
+ id: DevEnvironmentSessionSummaryIdString;
482
+ }
483
+ export type DevEnvironmentSessionSummaryIdString = string;
453
484
  export type DevEnvironmentSessionType = "SSM"|"SSH"|string;
485
+ export type DevEnvironmentSessionsSummaryList = DevEnvironmentSessionSummary[];
454
486
  export type DevEnvironmentStatus = "PENDING"|"RUNNING"|"STARTING"|"STOPPING"|"STOPPED"|"FAILED"|"DELETING"|"DELETED"|string;
455
487
  export interface DevEnvironmentSummary {
456
488
  /**
@@ -863,6 +895,40 @@ declare namespace CodeCatalyst {
863
895
  */
864
896
  nextToken?: String;
865
897
  }
898
+ export interface ListDevEnvironmentSessionsRequest {
899
+ /**
900
+ * The name of the space.
901
+ */
902
+ spaceName: NameString;
903
+ /**
904
+ * The name of the project in the space.
905
+ */
906
+ projectName: NameString;
907
+ /**
908
+ * The system-generated unique ID of the Dev Environment.
909
+ */
910
+ devEnvironmentId: Uuid;
911
+ /**
912
+ * A token returned from a call to this API to indicate the next batch of results to return, if any.
913
+ */
914
+ nextToken?: ListDevEnvironmentSessionsRequestNextTokenString;
915
+ /**
916
+ * The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a NextToken element, which you can use to obtain additional results.
917
+ */
918
+ maxResults?: ListDevEnvironmentSessionsRequestMaxResultsInteger;
919
+ }
920
+ export type ListDevEnvironmentSessionsRequestMaxResultsInteger = number;
921
+ export type ListDevEnvironmentSessionsRequestNextTokenString = string;
922
+ export interface ListDevEnvironmentSessionsResponse {
923
+ /**
924
+ * Information about each session retrieved in the list.
925
+ */
926
+ items: DevEnvironmentSessionsSummaryList;
927
+ /**
928
+ * A token returned from a call to this API to indicate the next batch of results to return, if any.
929
+ */
930
+ nextToken?: String;
931
+ }
866
932
  export interface ListDevEnvironmentsRequest {
867
933
  /**
868
934
  * The name of the space.
@@ -314,7 +314,7 @@ declare namespace Detective {
314
314
  */
315
315
  UnprocessedAccounts?: UnprocessedAccountList;
316
316
  }
317
- export type DatasourcePackage = "DETECTIVE_CORE"|"EKS_AUDIT"|string;
317
+ export type DatasourcePackage = "DETECTIVE_CORE"|"EKS_AUDIT"|"ASFF_SECURITYHUB_FINDING"|string;
318
318
  export interface DatasourcePackageIngestDetail {
319
319
  /**
320
320
  * Details on which data source packages are ingested for a member account.
@@ -2223,7 +2223,7 @@ declare namespace DirectConnect {
2223
2223
  */
2224
2224
  asn?: ASN;
2225
2225
  /**
2226
- * The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
2226
+ * The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500
2227
2227
  */
2228
2228
  mtu?: MTU;
2229
2229
  /**
@@ -2550,7 +2550,7 @@ declare namespace DirectConnect {
2550
2550
  */
2551
2551
  customerRouterConfig?: RouterConfig;
2552
2552
  /**
2553
- * The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
2553
+ * The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500
2554
2554
  */
2555
2555
  mtu?: MTU;
2556
2556
  /**
@@ -3717,6 +3717,10 @@ declare namespace Glue {
3717
3717
  * A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data. If no context words are passed only a regular expression is checked.
3718
3718
  */
3719
3719
  ContextWords?: ContextWords;
3720
+ /**
3721
+ * A list of tags applied to the custom entity type.
3722
+ */
3723
+ Tags?: TagsMap;
3720
3724
  }
3721
3725
  export interface CreateCustomEntityTypeResponse {
3722
3726
  /**
@@ -8871,6 +8875,10 @@ declare namespace Glue {
8871
8875
  * The maximum number of results to return.
8872
8876
  */
8873
8877
  MaxResults?: PageSize;
8878
+ /**
8879
+ * A list of key-value pair tags.
8880
+ */
8881
+ Tags?: TagsMap;
8874
8882
  }
8875
8883
  export interface ListCustomEntityTypesResponse {
8876
8884
  /**
@@ -2456,7 +2456,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2456
2456
  The Amazon Resource Name (ARN) of the cluster.
2457
2457
 
2458
2458
  */
2459
- ClusterArn?: __string;
2459
+ ClusterArn: __string;
2460
2460
  /**
2461
2461
  *
2462
2462
  The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
@@ -2522,7 +2522,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2522
2522
  The Amazon Resource Name (ARN) of the cluster.
2523
2523
 
2524
2524
  */
2525
- ClusterArn?: __string;
2525
+ ClusterArn: __string;
2526
2526
  /**
2527
2527
  *
2528
2528
  The VPC connection ARN.
@@ -564,7 +564,7 @@ declare namespace Rekognition {
564
564
  GroundTruthManifest?: GroundTruthManifest;
565
565
  }
566
566
  export type Assets = Asset[];
567
- export type Attribute = "DEFAULT"|"ALL"|"AGE_RANGE"|"BEARD"|"EMOTIONS"|"EYEGLASSES"|"EYES_OPEN"|"GENDER"|"MOUTH_OPEN"|"MUSTACHE"|"FACE_OCCLUDED"|"SMILE"|"SUNGLASSES"|string;
567
+ export type Attribute = "DEFAULT"|"ALL"|"AGE_RANGE"|"BEARD"|"EMOTIONS"|"EYE_DIRECTION"|"EYEGLASSES"|"EYES_OPEN"|"GENDER"|"MOUTH_OPEN"|"MUSTACHE"|"FACE_OCCLUDED"|"SMILE"|"SUNGLASSES"|string;
568
568
  export type Attributes = Attribute[];
569
569
  export interface AudioMetadata {
570
570
  /**
@@ -1759,6 +1759,20 @@ declare namespace Rekognition {
1759
1759
  }
1760
1760
  export type ExtendedPaginationToken = string;
1761
1761
  export type ExternalImageId = string;
1762
+ export interface EyeDirection {
1763
+ /**
1764
+ * Value representing eye direction on the yaw axis.
1765
+ */
1766
+ Yaw?: Degree;
1767
+ /**
1768
+ * Value representing eye direction on the pitch axis.
1769
+ */
1770
+ Pitch?: Degree;
1771
+ /**
1772
+ * The confidence that the service has in its predicted eye direction.
1773
+ */
1774
+ Confidence?: Percent;
1775
+ }
1762
1776
  export interface EyeOpen {
1763
1777
  /**
1764
1778
  * Boolean value that indicates whether the eyes on the face are open.
@@ -1871,6 +1885,10 @@ declare namespace Rekognition {
1871
1885
  * FaceOccluded should return "true" with a high confidence score if a detected face’s eyes, nose, and mouth are partially captured or if they are covered by masks, dark sunglasses, cell phones, hands, or other objects. FaceOccluded should return "false" with a high confidence score if common occurrences that do not impact face verification are detected, such as eye glasses, lightly tinted sunglasses, strands of hair, and others.
1872
1886
  */
1873
1887
  FaceOccluded?: FaceOccluded;
1888
+ /**
1889
+ * Indicates the direction the eyes are gazing in, as defined by pitch and yaw.
1890
+ */
1891
+ EyeDirection?: EyeDirection;
1874
1892
  }
1875
1893
  export type FaceDetailList = FaceDetail[];
1876
1894
  export interface FaceDetection {