cdk-comprehend-s3olap 2.0.134 → 2.0.136

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 (32) 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 +3 -1
  7. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +4 -9
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +1279 -275
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +17 -0
  10. package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +782 -113
  11. package/node_modules/aws-sdk/apis/datasync-2018-11-09.paginators.json +23 -0
  12. package/node_modules/aws-sdk/apis/ds-2015-04-16.min.json +8 -7
  13. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1234 -1215
  14. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +183 -155
  15. package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.examples.json +98 -0
  16. package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.min.json +233 -23
  17. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +0 -12
  18. package/node_modules/aws-sdk/clients/codecatalyst.d.ts +11 -11
  19. package/node_modules/aws-sdk/clients/connect.d.ts +1119 -89
  20. package/node_modules/aws-sdk/clients/datasync.d.ts +857 -10
  21. package/node_modules/aws-sdk/clients/directoryservice.d.ts +7 -2
  22. package/node_modules/aws-sdk/clients/ec2.d.ts +140 -115
  23. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +67 -33
  24. package/node_modules/aws-sdk/clients/pinpoint.d.ts +208 -23
  25. package/node_modules/aws-sdk/clients/rekognition.d.ts +4 -4
  26. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  27. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
  28. package/node_modules/aws-sdk/dist/aws-sdk.js +2542 -1502
  29. package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
  30. package/node_modules/aws-sdk/lib/core.js +1 -1
  31. package/node_modules/aws-sdk/package.json +1 -1
  32. package/package.json +3 -3
@@ -547,6 +547,30 @@ declare class Pinpoint extends Service {
547
547
  * Retrieves (queries) pre-aggregated data for a standard execution metric that applies to a journey.
548
548
  */
549
549
  getJourneyExecutionMetrics(callback?: (err: AWSError, data: Pinpoint.Types.GetJourneyExecutionMetricsResponse) => void): Request<Pinpoint.Types.GetJourneyExecutionMetricsResponse, AWSError>;
550
+ /**
551
+ * Retrieves (queries) pre-aggregated data for a standard run execution metric that applies to a journey activity.
552
+ */
553
+ getJourneyRunExecutionActivityMetrics(params: Pinpoint.Types.GetJourneyRunExecutionActivityMetricsRequest, callback?: (err: AWSError, data: Pinpoint.Types.GetJourneyRunExecutionActivityMetricsResponse) => void): Request<Pinpoint.Types.GetJourneyRunExecutionActivityMetricsResponse, AWSError>;
554
+ /**
555
+ * Retrieves (queries) pre-aggregated data for a standard run execution metric that applies to a journey activity.
556
+ */
557
+ getJourneyRunExecutionActivityMetrics(callback?: (err: AWSError, data: Pinpoint.Types.GetJourneyRunExecutionActivityMetricsResponse) => void): Request<Pinpoint.Types.GetJourneyRunExecutionActivityMetricsResponse, AWSError>;
558
+ /**
559
+ * Retrieves (queries) pre-aggregated data for a standard run execution metric that applies to a journey.
560
+ */
561
+ getJourneyRunExecutionMetrics(params: Pinpoint.Types.GetJourneyRunExecutionMetricsRequest, callback?: (err: AWSError, data: Pinpoint.Types.GetJourneyRunExecutionMetricsResponse) => void): Request<Pinpoint.Types.GetJourneyRunExecutionMetricsResponse, AWSError>;
562
+ /**
563
+ * Retrieves (queries) pre-aggregated data for a standard run execution metric that applies to a journey.
564
+ */
565
+ getJourneyRunExecutionMetrics(callback?: (err: AWSError, data: Pinpoint.Types.GetJourneyRunExecutionMetricsResponse) => void): Request<Pinpoint.Types.GetJourneyRunExecutionMetricsResponse, AWSError>;
566
+ /**
567
+ * Provides information about the runs of a journey.
568
+ */
569
+ getJourneyRuns(params: Pinpoint.Types.GetJourneyRunsRequest, callback?: (err: AWSError, data: Pinpoint.Types.GetJourneyRunsResponse) => void): Request<Pinpoint.Types.GetJourneyRunsResponse, AWSError>;
570
+ /**
571
+ * Provides information about the runs of a journey.
572
+ */
573
+ getJourneyRuns(callback?: (err: AWSError, data: Pinpoint.Types.GetJourneyRunsResponse) => void): Request<Pinpoint.Types.GetJourneyRunsResponse, AWSError>;
550
574
  /**
551
575
  * Retrieves the content and settings of a message template for messages that are sent through a push notification channel.
552
576
  */
@@ -1637,6 +1661,10 @@ declare namespace Pinpoint {
1637
1661
  * The unique identifier for the campaign treatment that the activity applies to. A treatment is a variation of a campaign that's used for A/B testing of a campaign.
1638
1662
  */
1639
1663
  TreatmentId?: __string;
1664
+ /**
1665
+ * A JSON object that contains metrics relating to the campaign execution for this campaign activity. For information about the structure and contents of the results, see Standard Amazon Pinpoint analytics metrics in the Amazon Pinpoint Developer Guide.
1666
+ */
1667
+ ExecutionMetrics?: MapOf__string;
1640
1668
  }
1641
1669
  export interface AddressConfiguration {
1642
1670
  /**
@@ -4240,6 +4268,81 @@ declare namespace Pinpoint {
4240
4268
  export interface GetJourneyResponse {
4241
4269
  JourneyResponse: JourneyResponse;
4242
4270
  }
4271
+ export interface GetJourneyRunExecutionActivityMetricsRequest {
4272
+ /**
4273
+ * The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
4274
+ */
4275
+ ApplicationId: __string;
4276
+ /**
4277
+ * The unique identifier for the journey activity.
4278
+ */
4279
+ JourneyActivityId: __string;
4280
+ /**
4281
+ * The unique identifier for the journey.
4282
+ */
4283
+ JourneyId: __string;
4284
+ /**
4285
+ * The string that specifies which page of results to return in a paginated response. This parameter is not supported for application, campaign, and journey metrics.
4286
+ */
4287
+ NextToken?: __string;
4288
+ /**
4289
+ * The maximum number of items to include in each page of a paginated response. This parameter is not supported for application, campaign, and journey metrics.
4290
+ */
4291
+ PageSize?: __string;
4292
+ /**
4293
+ * The unique identifier for the journey run.
4294
+ */
4295
+ RunId: __string;
4296
+ }
4297
+ export interface GetJourneyRunExecutionActivityMetricsResponse {
4298
+ JourneyRunExecutionActivityMetricsResponse: JourneyRunExecutionActivityMetricsResponse;
4299
+ }
4300
+ export interface GetJourneyRunExecutionMetricsRequest {
4301
+ /**
4302
+ * The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
4303
+ */
4304
+ ApplicationId: __string;
4305
+ /**
4306
+ * The unique identifier for the journey.
4307
+ */
4308
+ JourneyId: __string;
4309
+ /**
4310
+ * The string that specifies which page of results to return in a paginated response. This parameter is not supported for application, campaign, and journey metrics.
4311
+ */
4312
+ NextToken?: __string;
4313
+ /**
4314
+ * The maximum number of items to include in each page of a paginated response. This parameter is not supported for application, campaign, and journey metrics.
4315
+ */
4316
+ PageSize?: __string;
4317
+ /**
4318
+ * The unique identifier for the journey run.
4319
+ */
4320
+ RunId: __string;
4321
+ }
4322
+ export interface GetJourneyRunExecutionMetricsResponse {
4323
+ JourneyRunExecutionMetricsResponse: JourneyRunExecutionMetricsResponse;
4324
+ }
4325
+ export interface GetJourneyRunsRequest {
4326
+ /**
4327
+ * The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
4328
+ */
4329
+ ApplicationId: __string;
4330
+ /**
4331
+ * The unique identifier for the journey.
4332
+ */
4333
+ JourneyId: __string;
4334
+ /**
4335
+ * The maximum number of items to include in each page of a paginated response. This parameter is not supported for application, campaign, and journey metrics.
4336
+ */
4337
+ PageSize?: __string;
4338
+ /**
4339
+ * The NextToken string that specifies which page of results to return in a paginated response.
4340
+ */
4341
+ Token?: __string;
4342
+ }
4343
+ export interface GetJourneyRunsResponse {
4344
+ JourneyRunsResponse: JourneyRunsResponse;
4345
+ }
4243
4346
  export interface GetPushTemplateRequest {
4244
4347
  /**
4245
4348
  * The name of the message template. A template name must start with an alphanumeric character and can contain a maximum of 128 characters. The characters can be alphanumeric characters, underscores (_), or hyphens (-). Template names are case sensitive.
@@ -4848,7 +4951,7 @@ declare namespace Pinpoint {
4848
4951
  }
4849
4952
  export interface JourneyExecutionActivityMetricsResponse {
4850
4953
  /**
4851
- * The type of activity that the metric applies to. Possible values are: CONDITIONAL_SPLIT - For a yes/no split activity, which is an activity that sends participants down one of two paths in a journey. HOLDOUT - For a holdout activity, which is an activity that stops a journey for a specified percentage of participants. MESSAGE - For an email activity, which is an activity that sends an email message to participants. MULTI_CONDITIONAL_SPLIT - For a multivariate split activity, which is an activity that sends participants down one of as many as five paths in a journey. RANDOM_SPLIT - For a random split activity, which is an activity that sends specified percentages of participants down one of as many as five paths in a journey. WAIT - For a wait activity, which is an activity that waits for a certain amount of time or until a specific date and time before moving participants to the next activity in a journey.
4954
+ * The type of activity that the metric applies to. Possible values are: CONDITIONAL_SPLIT For a yes/no split activity, which is an activity that sends participants down one of two paths in a journey. HOLDOUT For a holdout activity, which is an activity that stops a journey for a specified percentage of participants. MESSAGE For an email activity, which is an activity that sends an email message to participants. MULTI_CONDITIONAL_SPLIT For a multivariate split activity, which is an activity that sends participants down one of as many as five paths in a journey. RANDOM_SPLIT For a random split activity, which is an activity that sends specified percentages of participants down one of as many as five paths in a journey. WAIT For a wait activity, which is an activity that waits for a certain amount of time or until a specific date and time before moving participants to the next activity in a journey.
4852
4955
  */
4853
4956
  ActivityType: __string;
4854
4957
  /**
@@ -4986,11 +5089,11 @@ declare namespace Pinpoint {
4986
5089
  */
4987
5090
  tags?: MapOf__string;
4988
5091
  /**
4989
- * Specifies whether endpoints in quiet hours should enter a wait till the end of their quiet hours.
5092
+ * Indicates whether endpoints in quiet hours should enter a wait activity until quiet hours have elapsed.
4990
5093
  */
4991
5094
  WaitForQuietTime?: __boolean;
4992
5095
  /**
4993
- * Specifies whether a journey should be refreshed on segment update.
5096
+ * Indicates whether the journey participants should be refreshed when a segment is updated.
4994
5097
  */
4995
5098
  RefreshOnSegmentUpdate?: __boolean;
4996
5099
  /**
@@ -4998,18 +5101,99 @@ declare namespace Pinpoint {
4998
5101
  */
4999
5102
  JourneyChannelSettings?: JourneyChannelSettings;
5000
5103
  /**
5001
- * Indicates if journey have Advance Quiet Time (OpenHours and ClosedDays). This flag should be set to true in order to allow (OpenHours and ClosedDays)
5104
+ * Indicates if journey has Advance Quiet Time enabled. This flag should be set to true in order to allow using OpenHours and ClosedDays.
5002
5105
  */
5003
5106
  SendingSchedule?: __boolean;
5004
5107
  /**
5005
- * The time when journey allow to send messages. QuietTime should be configured first and SendingSchedule should be set to true.
5108
+ * The time when a journey can send messages. QuietTime should be configured first and SendingSchedule should be set to true.
5006
5109
  */
5007
5110
  OpenHours?: OpenHours;
5008
5111
  /**
5009
- * The time when journey will stop sending messages. QuietTime should be configured first and SendingSchedule should be set to true.
5112
+ * The time when a journey will not send messages. QuietTime should be configured first and SendingSchedule should be set to true.
5010
5113
  */
5011
5114
  ClosedDays?: ClosedDays;
5012
5115
  }
5116
+ export interface JourneyRunExecutionActivityMetricsResponse {
5117
+ /**
5118
+ * The type of activity that the metric applies to. Possible values are: CONDITIONAL_SPLIT – For a yes/no split activity, which is an activity that sends participants down one of two paths in a journey. HOLDOUT – For a holdout activity, which is an activity that stops a journey for a specified percentage of participants. MESSAGE – For an email activity, which is an activity that sends an email message to participants. MULTI_CONDITIONAL_SPLIT – For a multivariate split activity, which is an activity that sends participants down one of as many as five paths in a journey. RANDOM_SPLIT – For a random split activity, which is an activity that sends specified percentages of participants down one of as many as five paths in a journey. WAIT – For a wait activity, which is an activity that waits for a certain amount of time or until a specific date and time before moving participants to the next activity in a journey.
5119
+ */
5120
+ ActivityType: __string;
5121
+ /**
5122
+ * The unique identifier for the application that the metric applies to.
5123
+ */
5124
+ ApplicationId: __string;
5125
+ /**
5126
+ * The unique identifier for the activity that the metric applies to.
5127
+ */
5128
+ JourneyActivityId: __string;
5129
+ /**
5130
+ * The unique identifier for the journey that the metric applies to.
5131
+ */
5132
+ JourneyId: __string;
5133
+ /**
5134
+ * The date and time, in ISO 8601 format, when Amazon Pinpoint last evaluated the execution status of the activity for this journey run and updated the data for the metric.
5135
+ */
5136
+ LastEvaluatedTime: __string;
5137
+ /**
5138
+ * A JSON object that contains the results of the query. For information about the structure and contents of the results, see see Standard Amazon Pinpoint analytics metrics in the Amazon Pinpoint Developer Guide.
5139
+ */
5140
+ Metrics: MapOf__string;
5141
+ /**
5142
+ * The unique identifier for the journey run that the metric applies to.
5143
+ */
5144
+ RunId: __string;
5145
+ }
5146
+ export interface JourneyRunExecutionMetricsResponse {
5147
+ /**
5148
+ * The unique identifier for the application that the metric applies to.
5149
+ */
5150
+ ApplicationId: __string;
5151
+ /**
5152
+ * The unique identifier for the journey that the metric applies to.
5153
+ */
5154
+ JourneyId: __string;
5155
+ /**
5156
+ * The date and time, in ISO 8601 format, when Amazon Pinpoint last evaluated the journey run and updated the data for the metric.
5157
+ */
5158
+ LastEvaluatedTime: __string;
5159
+ /**
5160
+ * A JSON object that contains the results of the query. For information about the structure and contents of the results, see the Standard Amazon Pinpoint analytics metrics in the Amazon Pinpoint Developer Guide.
5161
+ */
5162
+ Metrics: MapOf__string;
5163
+ /**
5164
+ * The unique identifier for the journey run that the metric applies to.
5165
+ */
5166
+ RunId: __string;
5167
+ }
5168
+ export interface JourneyRunResponse {
5169
+ /**
5170
+ * The time when the journey run was created or scheduled, in ISO 8601 format.
5171
+ */
5172
+ CreationTime: __string;
5173
+ /**
5174
+ * The last time the journey run was updated, in ISO 8601 format..
5175
+ */
5176
+ LastUpdateTime: __string;
5177
+ /**
5178
+ * The unique identifier for the run.
5179
+ */
5180
+ RunId: __string;
5181
+ /**
5182
+ * The current status of the journey run.
5183
+ */
5184
+ Status: JourneyRunStatus;
5185
+ }
5186
+ export interface JourneyRunsResponse {
5187
+ /**
5188
+ * An array of responses, one for each run of the journey
5189
+ */
5190
+ Item: ListOfJourneyRunResponse;
5191
+ /**
5192
+ * The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.
5193
+ */
5194
+ NextToken?: __string;
5195
+ }
5196
+ export type JourneyRunStatus = "SCHEDULED"|"RUNNING"|"COMPLETED"|"CANCELLED"|string;
5013
5197
  export interface JourneySMSMessage {
5014
5198
  /**
5015
5199
  * The SMS message type. Valid values are TRANSACTIONAL (for messages that are critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for messsages that aren't critical or time-sensitive, such as marketing messages).
@@ -7273,7 +7457,7 @@ declare namespace Pinpoint {
7273
7457
  */
7274
7458
  WaitForQuietTime?: __boolean;
7275
7459
  /**
7276
- * Specifies whether a journey should be refreshed on segment update.
7460
+ * Indicates whether the journey participants should be refreshed when a segment is updated.
7277
7461
  */
7278
7462
  RefreshOnSegmentUpdate?: __boolean;
7279
7463
  /**
@@ -7281,7 +7465,7 @@ declare namespace Pinpoint {
7281
7465
  */
7282
7466
  JourneyChannelSettings?: JourneyChannelSettings;
7283
7467
  /**
7284
- * Indicates if journey have Advance Quiet Time (OpenHours and ClosedDays). This flag should be set to true in order to allow (OpenHours and ClosedDays)
7468
+ * Indicates if journey has Advance Quiet Time enabled. This flag should be set to true in order to allow using OpenHours and ClosedDays.
7285
7469
  */
7286
7470
  SendingSchedule?: __boolean;
7287
7471
  /**
@@ -7355,6 +7539,7 @@ declare namespace Pinpoint {
7355
7539
  export type ListOfInAppMessageCampaign = InAppMessageCampaign[];
7356
7540
  export type ListOfInAppMessageContent = InAppMessageContent[];
7357
7541
  export type ListOfJourneyResponse = JourneyResponse[];
7542
+ export type ListOfJourneyRunResponse = JourneyRunResponse[];
7358
7543
  export type ListOfMultiConditionalBranch = MultiConditionalBranch[];
7359
7544
  export type ListOfRandomSplitEntry = RandomSplitEntry[];
7360
7545
  export type ListOfRecommenderConfigurationResponse = RecommenderConfigurationResponse[];
@@ -7393,11 +7578,11 @@ declare namespace Pinpoint {
7393
7578
  export type DayOfWeek = "MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY"|"SUNDAY"|string;
7394
7579
  export interface OpenHoursRule {
7395
7580
  /**
7396
- * Local start time in ISO 8601 format.
7581
+ * The start of the scheduled time, in ISO 8601 format, when the channel can send messages.
7397
7582
  */
7398
7583
  StartTime?: __string;
7399
7584
  /**
7400
- * Local start time in ISO 8601 format.
7585
+ * The end of the scheduled time, in ISO 8601 format, when the channel can't send messages.
7401
7586
  */
7402
7587
  EndTime?: __string;
7403
7588
  }
@@ -7405,60 +7590,60 @@ declare namespace Pinpoint {
7405
7590
  export type MapOfListOfOpenHoursRules = {[key: string]: ListOfOpenHoursRules};
7406
7591
  export interface OpenHours {
7407
7592
  /**
7408
- * Rules for Email Channel.
7593
+ * Specifies the schedule settings for the email channel.
7409
7594
  */
7410
7595
  EMAIL?: MapOfListOfOpenHoursRules;
7411
7596
  /**
7412
- * Rules for SMS Channel.
7597
+ * Specifies the schedule settings for the SMS channel.
7413
7598
  */
7414
7599
  SMS?: MapOfListOfOpenHoursRules;
7415
7600
  /**
7416
- * Rules for Push Channel.
7601
+ * Specifies the schedule settings for the push channel.
7417
7602
  */
7418
7603
  PUSH?: MapOfListOfOpenHoursRules;
7419
7604
  /**
7420
- * Rules for Voice Channel.
7605
+ * Specifies the schedule settings for the voice channel.
7421
7606
  */
7422
7607
  VOICE?: MapOfListOfOpenHoursRules;
7423
7608
  /**
7424
- * Rules for Custom Channel.
7609
+ * Specifies the schedule settings for the custom channel.
7425
7610
  */
7426
7611
  CUSTOM?: MapOfListOfOpenHoursRules;
7427
7612
  }
7428
7613
  export interface ClosedDaysRule {
7429
7614
  /**
7430
- * Name of the rule.
7615
+ * The name of the closed day rule.
7431
7616
  */
7432
7617
  Name?: __string;
7433
7618
  /**
7434
- * Start Datetime in ISO 8601 format.
7619
+ * Start DateTime ISO 8601 format
7435
7620
  */
7436
7621
  StartDateTime?: __string;
7437
7622
  /**
7438
- * End Datetime in ISO 8601 format.
7623
+ * End DateTime ISO 8601 format
7439
7624
  */
7440
7625
  EndDateTime?: __string;
7441
7626
  }
7442
7627
  export type ListOfClosedDaysRules = ClosedDaysRule[];
7443
7628
  export interface ClosedDays {
7444
7629
  /**
7445
- * Rules for Email Channel.
7630
+ * Rules for the Email channel.
7446
7631
  */
7447
7632
  EMAIL?: ListOfClosedDaysRules;
7448
7633
  /**
7449
- * Rules for SMS Channel.
7634
+ * Rules for the SMS channel.
7450
7635
  */
7451
7636
  SMS?: ListOfClosedDaysRules;
7452
7637
  /**
7453
- * Rules for Push Channel.
7638
+ * Rules for the Push channel.
7454
7639
  */
7455
7640
  PUSH?: ListOfClosedDaysRules;
7456
7641
  /**
7457
- * Rules for Voice Channel.
7642
+ * Rules for the Voice channel.
7458
7643
  */
7459
7644
  VOICE?: ListOfClosedDaysRules;
7460
7645
  /**
7461
- * Rules for Custom Channel.
7646
+ * Rules for the Custom channel.
7462
7647
  */
7463
7648
  CUSTOM?: ListOfClosedDaysRules;
7464
7649
  }
@@ -45,11 +45,11 @@ declare class Rekognition extends Service {
45
45
  */
46
46
  createDataset(callback?: (err: AWSError, data: Rekognition.Types.CreateDatasetResponse) => void): Request<Rekognition.Types.CreateDatasetResponse, AWSError>;
47
47
  /**
48
- * This API operation initiates a Face Liveness session. It returns a SessionId, which you can use to start streaming Face Liveness video and get the results for a Face Liveness session. You can use the OutputConfig option in the Settings parameter to provide an Amazon S3 bucket location. The Amazon S3 bucket stores reference images and audit images. You can use AuditImagesLimit to limit of audit images returned. This number is between 0 and 4. By default, it is set to 0. The limit is best effort and based on the duration of the selfie-video.
48
+ * This API operation initiates a Face Liveness session. It returns a SessionId, which you can use to start streaming Face Liveness video and get the results for a Face Liveness session. You can use the OutputConfig option in the Settings parameter to provide an Amazon S3 bucket location. The Amazon S3 bucket stores reference images and audit images. You can use AuditImagesLimit to limit the number of audit images returned. This number is between 0 and 4. By default, it is set to 0. The limit is best effort and based on the duration of the selfie-video.
49
49
  */
50
50
  createFaceLivenessSession(params: Rekognition.Types.CreateFaceLivenessSessionRequest, callback?: (err: AWSError, data: Rekognition.Types.CreateFaceLivenessSessionResponse) => void): Request<Rekognition.Types.CreateFaceLivenessSessionResponse, AWSError>;
51
51
  /**
52
- * This API operation initiates a Face Liveness session. It returns a SessionId, which you can use to start streaming Face Liveness video and get the results for a Face Liveness session. You can use the OutputConfig option in the Settings parameter to provide an Amazon S3 bucket location. The Amazon S3 bucket stores reference images and audit images. You can use AuditImagesLimit to limit of audit images returned. This number is between 0 and 4. By default, it is set to 0. The limit is best effort and based on the duration of the selfie-video.
52
+ * This API operation initiates a Face Liveness session. It returns a SessionId, which you can use to start streaming Face Liveness video and get the results for a Face Liveness session. You can use the OutputConfig option in the Settings parameter to provide an Amazon S3 bucket location. The Amazon S3 bucket stores reference images and audit images. You can use AuditImagesLimit to limit the number of audit images returned. This number is between 0 and 4. By default, it is set to 0. The limit is best effort and based on the duration of the selfie-video.
53
53
  */
54
54
  createFaceLivenessSession(callback?: (err: AWSError, data: Rekognition.Types.CreateFaceLivenessSessionResponse) => void): Request<Rekognition.Types.CreateFaceLivenessSessionResponse, AWSError>;
55
55
  /**
@@ -2756,13 +2756,13 @@ declare namespace Rekognition {
2756
2756
  */
2757
2757
  S3Bucket: S3Bucket;
2758
2758
  /**
2759
- * The prefix appended to the output files for the Face Liveness session results.
2759
+ * The prefix prepended to the output files for the Face Liveness session results.
2760
2760
  */
2761
2761
  S3KeyPrefix?: LivenessS3KeyPrefix;
2762
2762
  }
2763
2763
  export type LivenessS3KeyPrefix = string;
2764
2764
  export type LivenessSessionId = string;
2765
- export type LivenessSessionStatus = "CREATED"|"IN_PROGRESS"|"SUCCEEDED"|"FAILED"|string;
2765
+ export type LivenessSessionStatus = "CREATED"|"IN_PROGRESS"|"SUCCEEDED"|"FAILED"|"EXPIRED"|string;
2766
2766
  export type MaxDurationInSecondsULong = number;
2767
2767
  export type MaxFaces = number;
2768
2768
  export type MaxFacesToIndex = number;
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1363.0',
86
+ VERSION: '2.1365.0',
87
87
 
88
88
  /**
89
89
  * @api private