cdk-comprehend-s3olap 2.0.82 → 2.0.85

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 (31) 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 +9 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
  8. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
  9. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
  11. package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
  12. package/node_modules/aws-sdk/clients/fsx.d.ts +1 -1
  13. package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
  14. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
  15. package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
  16. package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
  17. package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
  18. package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -16
  19. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  20. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +6 -6
  21. package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
  22. package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
  23. package/node_modules/aws-sdk/lib/core.js +1 -1
  24. package/node_modules/aws-sdk/package.json +1 -1
  25. package/node_modules/esbuild/bin/esbuild +12 -6
  26. package/node_modules/esbuild/install.js +4 -4
  27. package/node_modules/esbuild/lib/main.js +19 -13
  28. package/node_modules/esbuild/package.json +22 -22
  29. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  30. package/node_modules/esbuild-linux-64/package.json +1 -1
  31. package/package.json +10 -10
@@ -231,7 +231,7 @@ declare namespace VoiceID {
231
231
  */
232
232
  ClientToken?: ClientTokenString;
233
233
  /**
234
- * A brief description of this domain.
234
+ * A brief description of the domain.
235
235
  */
236
236
  Description?: Description;
237
237
  /**
@@ -429,7 +429,7 @@ declare namespace VoiceID {
429
429
  */
430
430
  ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
431
431
  /**
432
- * Details about the most recent server-side encryption configuration update. When the server-side encryption configuration is changed, dependency on the old KMS key is removed through an asynchronous process. When this update is complete, the domains data can only be accessed using the new KMS key.
432
+ * Details about the most recent server-side encryption configuration update. When the server-side encryption configuration is changed, dependency on the old KMS key is removed through an asynchronous process. When this update is complete, the domain's data can only be accessed using the new KMS key.
433
433
  */
434
434
  ServerSideEncryptionUpdateDetails?: ServerSideEncryptionUpdateDetails;
435
435
  /**
@@ -513,7 +513,7 @@ declare namespace VoiceID {
513
513
  RiskThreshold: Score;
514
514
  }
515
515
  export type FraudDetectionDecision = "HIGH_RISK"|"LOW_RISK"|"NOT_ENOUGH_SPEECH"|string;
516
- export type FraudDetectionReason = "KNOWN_FRAUDSTER"|string;
516
+ export type FraudDetectionReason = "KNOWN_FRAUDSTER"|"VOICE_SPOOFING"|string;
517
517
  export type FraudDetectionReasons = FraudDetectionReason[];
518
518
  export interface FraudDetectionResult {
519
519
  /**
@@ -537,11 +537,11 @@ declare namespace VoiceID {
537
537
  */
538
538
  FraudDetectionResultId?: UniqueIdLarge;
539
539
  /**
540
- * The reason speaker was flagged by the fraud detection system. This is only be populated if fraud detection Decision is HIGH_RISK, and only has one possible value: KNOWN_FRAUDSTER.
540
+ * The reason speaker was flagged by the fraud detection system. This is only be populated if fraud detection Decision is HIGH_RISK, and the following possible values: KNOWN_FRAUDSTER and VOICE_SPOOFING.
541
541
  */
542
542
  Reasons?: FraudDetectionReasons;
543
543
  /**
544
- * Details about each risk analyzed for this speaker.
544
+ * Details about each risk analyzed for this speaker. Currently, this contains KnownFraudsterRisk and VoiceSpoofingRisk details.
545
545
  */
546
546
  RiskDetails?: FraudRiskDetails;
547
547
  }
@@ -550,6 +550,10 @@ declare namespace VoiceID {
550
550
  * The details resulting from 'Known Fraudster Risk' analysis of the speaker.
551
551
  */
552
552
  KnownFraudsterRisk: KnownFraudsterRisk;
553
+ /**
554
+ * The details resulting from 'Voice Spoofing Risk' analysis of the speaker.
555
+ */
556
+ VoiceSpoofingRisk: VoiceSpoofingRisk;
553
557
  }
554
558
  export interface Fraudster {
555
559
  /**
@@ -608,7 +612,7 @@ declare namespace VoiceID {
608
612
  */
609
613
  JobStatus?: FraudsterRegistrationJobStatus;
610
614
  /**
611
- * The output data config containing the S3 location where you want Voice ID to write your job output file; you must also include a KMS key iD in order to encrypt the file.
615
+ * The output data config containing the S3 location where you want Voice ID to write your job output file; you must also include a KMS key ID in order to encrypt the file.
612
616
  */
613
617
  OutputDataConfig?: OutputDataConfig;
614
618
  /**
@@ -640,7 +644,7 @@ declare namespace VoiceID {
640
644
  */
641
645
  JobId?: JobId;
642
646
  /**
643
- * The client-provied name for the fraudster registration job.
647
+ * The client-provided name for the fraudster registration job.
644
648
  */
645
649
  JobName?: JobName;
646
650
  /**
@@ -683,7 +687,7 @@ declare namespace VoiceID {
683
687
  }
684
688
  export interface ListDomainsRequest {
685
689
  /**
686
- * The maximum number of results that are returned per call. You can use NextToken to obtain further pages of results. The default is 100; the maximum allowed page size is also 100.
690
+ * The maximum number of domains to list per API call.
687
691
  */
688
692
  MaxResults?: MaxResultsForListDomainFe;
689
693
  /**
@@ -814,7 +818,7 @@ declare namespace VoiceID {
814
818
  }
815
819
  export interface OutputDataConfig {
816
820
  /**
817
- * the identifier of the KMS key you want Voice ID to use to encrypt the output file of the fraudster registration job.
821
+ * The identifier of the KMS key you want Voice ID to use to encrypt the output file of a speaker enrollment job/fraudster registration job.
818
822
  */
819
823
  KmsKeyId?: KmsKeyId;
820
824
  /**
@@ -836,7 +840,7 @@ declare namespace VoiceID {
836
840
  export type Score = number;
837
841
  export interface ServerSideEncryptionConfiguration {
838
842
  /**
839
- * The identifier of the KMS key you want Voice ID to use to encrypt your data.
843
+ * The identifier of the KMS key to use to encrypt data stored by Voice ID. Voice ID doesn't support asymmetric customer managed keys.
840
844
  */
841
845
  KmsKeyId: KmsKeyId;
842
846
  }
@@ -1033,7 +1037,7 @@ declare namespace VoiceID {
1033
1037
  */
1034
1038
  OutputDataConfig: OutputDataConfig;
1035
1039
  /**
1036
- * The registration config containing details such as the action to take when a duplicate fraudster is detected, and the similarity threshold to use for detecting a duplicate fraudster.
1040
+ * The registration config containing details such as the action to take when a duplicate fraudster is detected, and the similarity threshold to use for detecting a duplicate fraudster.
1037
1041
  */
1038
1042
  RegistrationConfig?: RegistrationConfig;
1039
1043
  }
@@ -1049,7 +1053,7 @@ declare namespace VoiceID {
1049
1053
  */
1050
1054
  ClientToken?: ClientTokenString;
1051
1055
  /**
1052
- * The IAM role Amazon Resource Name (ARN) that grants Voice ID permissions to access customer's buckets to read the input manifest file and write the job output file. Refer to Batch enrollment using audio data from prior calls documentation for the permissions needed in this role.
1056
+ * The IAM role Amazon Resource Name (ARN) that grants Voice ID permissions to access customer's buckets to read the input manifest file and write the job output file. Refer to Batch enrollment using audio data from prior calls for the permissions needed in this role.
1053
1057
  */
1054
1058
  DataAccessRoleArn: IamRoleArn;
1055
1059
  /**
@@ -1083,11 +1087,11 @@ declare namespace VoiceID {
1083
1087
  export type String = string;
1084
1088
  export interface Tag {
1085
1089
  /**
1086
- * The first part of a key:value pair that forms a tag associated with a given resource. For example, in the tag Department’:’Sales’, the key is 'Department'.
1090
+ * The first part of a key:value pair that forms a tag associated with a given resource. For example, in the tag 'Department':'Sales', the key is 'Department'.
1087
1091
  */
1088
1092
  Key: TagKey;
1089
1093
  /**
1090
- * The second part of a key:value pair that forms a tag associated with a given resource. For example, in the tag Department’:’Sales’, the value is 'Sales'.
1094
+ * The second part of a key:value pair that forms a tag associated with a given resource. For example, in the tag 'Department':'Sales', the value is 'Sales'.
1091
1095
  */
1092
1096
  Value: TagValue;
1093
1097
  }
@@ -1123,7 +1127,7 @@ declare namespace VoiceID {
1123
1127
  }
1124
1128
  export interface UpdateDomainRequest {
1125
1129
  /**
1126
- * A brief description about this domain.
1130
+ * A brief description of the domain.
1127
1131
  */
1128
1132
  Description?: Description;
1129
1133
  /**
@@ -1135,7 +1139,7 @@ declare namespace VoiceID {
1135
1139
  */
1136
1140
  Name: DomainName;
1137
1141
  /**
1138
- * The configuration, containing the KMS key identifier, to be used by Voice ID for the server-side encryption of your data. Note that all the existing data in the domain are still encrypted using the existing key, only the data added to domain after updating the key is encrypted using the new key.
1142
+ * The configuration, containing the KMS key identifier, to be used by Voice ID for the server-side encryption of your data. Changing the domain's associated KMS key immediately triggers an asynchronous process to remove dependency on the old KMS key, such that the domain's data can only be accessed using the new KMS key. The domain's ServerSideEncryptionUpdateDetails contains the details for this process.
1139
1143
  */
1140
1144
  ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration;
1141
1145
  }
@@ -1145,6 +1149,12 @@ declare namespace VoiceID {
1145
1149
  */
1146
1150
  Domain?: Domain;
1147
1151
  }
1152
+ export interface VoiceSpoofingRisk {
1153
+ /**
1154
+ * The score indicating the likelihood of speaker’s voice being spoofed.
1155
+ */
1156
+ RiskScore: Score;
1157
+ }
1148
1158
  /**
1149
1159
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
1150
1160
  */
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1204.0',
86
+ VERSION: '2.1206.0',
87
87
 
88
88
  /**
89
89
  * @api private