aws-sdk 2.1647.0 → 2.1649.0

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.
@@ -51,6 +51,14 @@ declare class IVSRealTime extends Service {
51
51
  * Deletes an EncoderConfiguration resource. Ensures that no Compositions are using this template; otherwise, returns an error.
52
52
  */
53
53
  deleteEncoderConfiguration(callback?: (err: AWSError, data: IVSRealTime.Types.DeleteEncoderConfigurationResponse) => void): Request<IVSRealTime.Types.DeleteEncoderConfigurationResponse, AWSError>;
54
+ /**
55
+ * Deletes the specified public key used to sign stage participant tokens. This invalidates future participant tokens generated using the key pair’s private key.
56
+ */
57
+ deletePublicKey(params: IVSRealTime.Types.DeletePublicKeyRequest, callback?: (err: AWSError, data: IVSRealTime.Types.DeletePublicKeyResponse) => void): Request<IVSRealTime.Types.DeletePublicKeyResponse, AWSError>;
58
+ /**
59
+ * Deletes the specified public key used to sign stage participant tokens. This invalidates future participant tokens generated using the key pair’s private key.
60
+ */
61
+ deletePublicKey(callback?: (err: AWSError, data: IVSRealTime.Types.DeletePublicKeyResponse) => void): Request<IVSRealTime.Types.DeletePublicKeyResponse, AWSError>;
54
62
  /**
55
63
  * Shuts down and deletes the specified stage (disconnecting all participants).
56
64
  */
@@ -99,6 +107,14 @@ declare class IVSRealTime extends Service {
99
107
  * Gets information about the specified participant token.
100
108
  */
101
109
  getParticipant(callback?: (err: AWSError, data: IVSRealTime.Types.GetParticipantResponse) => void): Request<IVSRealTime.Types.GetParticipantResponse, AWSError>;
110
+ /**
111
+ * Gets information for the specified public key.
112
+ */
113
+ getPublicKey(params: IVSRealTime.Types.GetPublicKeyRequest, callback?: (err: AWSError, data: IVSRealTime.Types.GetPublicKeyResponse) => void): Request<IVSRealTime.Types.GetPublicKeyResponse, AWSError>;
114
+ /**
115
+ * Gets information for the specified public key.
116
+ */
117
+ getPublicKey(callback?: (err: AWSError, data: IVSRealTime.Types.GetPublicKeyResponse) => void): Request<IVSRealTime.Types.GetPublicKeyResponse, AWSError>;
102
118
  /**
103
119
  * Gets information for the specified stage.
104
120
  */
@@ -123,6 +139,14 @@ declare class IVSRealTime extends Service {
123
139
  * Gets the storage configuration for the specified ARN.
124
140
  */
125
141
  getStorageConfiguration(callback?: (err: AWSError, data: IVSRealTime.Types.GetStorageConfigurationResponse) => void): Request<IVSRealTime.Types.GetStorageConfigurationResponse, AWSError>;
142
+ /**
143
+ * Import a public key to be used for signing stage participant tokens.
144
+ */
145
+ importPublicKey(params: IVSRealTime.Types.ImportPublicKeyRequest, callback?: (err: AWSError, data: IVSRealTime.Types.ImportPublicKeyResponse) => void): Request<IVSRealTime.Types.ImportPublicKeyResponse, AWSError>;
146
+ /**
147
+ * Import a public key to be used for signing stage participant tokens.
148
+ */
149
+ importPublicKey(callback?: (err: AWSError, data: IVSRealTime.Types.ImportPublicKeyResponse) => void): Request<IVSRealTime.Types.ImportPublicKeyResponse, AWSError>;
126
150
  /**
127
151
  * Gets summary information about all Compositions in your account, in the AWS region where the API request is processed.
128
152
  */
@@ -155,6 +179,14 @@ declare class IVSRealTime extends Service {
155
179
  * Lists all participants in a specified stage session.
156
180
  */
157
181
  listParticipants(callback?: (err: AWSError, data: IVSRealTime.Types.ListParticipantsResponse) => void): Request<IVSRealTime.Types.ListParticipantsResponse, AWSError>;
182
+ /**
183
+ * Gets summary information about all public keys in your account, in the AWS region where the API request is processed.
184
+ */
185
+ listPublicKeys(params: IVSRealTime.Types.ListPublicKeysRequest, callback?: (err: AWSError, data: IVSRealTime.Types.ListPublicKeysResponse) => void): Request<IVSRealTime.Types.ListPublicKeysResponse, AWSError>;
186
+ /**
187
+ * Gets summary information about all public keys in your account, in the AWS region where the API request is processed.
188
+ */
189
+ listPublicKeys(callback?: (err: AWSError, data: IVSRealTime.Types.ListPublicKeysResponse) => void): Request<IVSRealTime.Types.ListPublicKeysResponse, AWSError>;
158
190
  /**
159
191
  * Gets all sessions for a specified stage.
160
192
  */
@@ -232,7 +264,7 @@ declare namespace IVSRealTime {
232
264
  export type AttributeKey = string;
233
265
  export interface AutoParticipantRecordingConfiguration {
234
266
  /**
235
- * ARN of the StorageConfiguration resource to use for auto participant recording. Default: "" (empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.
267
+ * ARN of the StorageConfiguration resource to use for individual participant recording. Default: "" (empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.
236
268
  */
237
269
  storageConfigurationArn: AutoParticipantRecordingStorageConfigurationArn;
238
270
  /**
@@ -383,7 +415,7 @@ declare namespace IVSRealTime {
383
415
  */
384
416
  tags?: Tags;
385
417
  /**
386
- * Auto participant recording configuration object attached to the stage.
418
+ * Configuration object for individual participant recording, to attach to the new stage.
387
419
  */
388
420
  autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
389
421
  }
@@ -425,6 +457,14 @@ declare namespace IVSRealTime {
425
457
  }
426
458
  export interface DeleteEncoderConfigurationResponse {
427
459
  }
460
+ export interface DeletePublicKeyRequest {
461
+ /**
462
+ * ARN of the public key to be deleted.
463
+ */
464
+ arn: PublicKeyArn;
465
+ }
466
+ export interface DeletePublicKeyResponse {
467
+ }
428
468
  export interface DeleteStageRequest {
429
469
  /**
430
470
  * ARN of the stage to be deleted.
@@ -633,6 +673,18 @@ declare namespace IVSRealTime {
633
673
  */
634
674
  participant?: Participant;
635
675
  }
676
+ export interface GetPublicKeyRequest {
677
+ /**
678
+ * ARN of the public key for which the information is to be retrieved.
679
+ */
680
+ arn: PublicKeyArn;
681
+ }
682
+ export interface GetPublicKeyResponse {
683
+ /**
684
+ * The public key that is returned.
685
+ */
686
+ publicKey?: PublicKey;
687
+ }
636
688
  export interface GetStageRequest {
637
689
  /**
638
690
  * ARN of the stage for which the information is to be retrieved.
@@ -675,7 +727,7 @@ declare namespace IVSRealTime {
675
727
  }
676
728
  export interface GridConfiguration {
677
729
  /**
678
- * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot.
730
+ * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot. Default: "" (no featured participant).
679
731
  */
680
732
  featuredParticipantAttribute?: AttributeKey;
681
733
  /**
@@ -683,11 +735,11 @@ declare namespace IVSRealTime {
683
735
  */
684
736
  omitStoppedVideo?: OmitStoppedVideo;
685
737
  /**
686
- * Sets the non-featured participant display mode. Default: VIDEO.
738
+ * Sets the non-featured participant display mode, to control the aspect ratio of video tiles. VIDEO is 16:9, SQUARE is 1:1, and PORTRAIT is 3:4. Default: VIDEO.
687
739
  */
688
740
  videoAspectRatio?: VideoAspectRatio;
689
741
  /**
690
- * Defines how video fits within the participant tile. When not set, videoFillMode defaults to COVER fill mode for participants in the grid and to CONTAIN fill mode for featured participants.
742
+ * Defines how video content fits within the participant tile: FILL (stretched), COVER (cropped), or CONTAIN (letterboxed). When not set, videoFillMode defaults to COVER fill mode for participants in the grid and to CONTAIN fill mode for featured participants.
691
743
  */
692
744
  videoFillMode?: VideoFillMode;
693
745
  /**
@@ -697,6 +749,26 @@ declare namespace IVSRealTime {
697
749
  }
698
750
  export type GridGap = number;
699
751
  export type Height = number;
752
+ export interface ImportPublicKeyRequest {
753
+ /**
754
+ * The content of the public key to be imported.
755
+ */
756
+ publicKeyMaterial: PublicKeyMaterial;
757
+ /**
758
+ * Name of the public key to be imported.
759
+ */
760
+ name?: PublicKeyName;
761
+ /**
762
+ * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
763
+ */
764
+ tags?: Tags;
765
+ }
766
+ export interface ImportPublicKeyResponse {
767
+ /**
768
+ * The public key that was imported.
769
+ */
770
+ publicKey?: PublicKey;
771
+ }
700
772
  export interface LayoutConfiguration {
701
773
  /**
702
774
  * Configuration related to grid layout. Default: Grid layout.
@@ -831,6 +903,26 @@ declare namespace IVSRealTime {
831
903
  */
832
904
  nextToken?: PaginationToken;
833
905
  }
906
+ export interface ListPublicKeysRequest {
907
+ /**
908
+ * The first public key to retrieve. This is used for pagination; see the nextToken response field.
909
+ */
910
+ nextToken?: PaginationToken;
911
+ /**
912
+ * Maximum number of results to return. Default: 50.
913
+ */
914
+ maxResults?: MaxPublicKeyResults;
915
+ }
916
+ export interface ListPublicKeysResponse {
917
+ /**
918
+ * List of the matching public keys (summary information only).
919
+ */
920
+ publicKeys: PublicKeyList;
921
+ /**
922
+ * If there are more public keys than maxResults, use nextToken in the request to get the next set.
923
+ */
924
+ nextToken?: PaginationToken;
925
+ }
834
926
  export interface ListStageSessionsRequest {
835
927
  /**
836
928
  * Stage ARN.
@@ -911,6 +1003,7 @@ declare namespace IVSRealTime {
911
1003
  export type MaxEncoderConfigurationResults = number;
912
1004
  export type MaxParticipantEventResults = number;
913
1005
  export type MaxParticipantResults = number;
1006
+ export type MaxPublicKeyResults = number;
914
1007
  export type MaxStageResults = number;
915
1008
  export type MaxStageSessionResults = number;
916
1009
  export type MaxStorageConfigurationResults = number;
@@ -970,11 +1063,11 @@ declare namespace IVSRealTime {
970
1063
  */
971
1064
  recordingS3BucketName?: ParticipantRecordingS3BucketName;
972
1065
  /**
973
- * S3 prefix of the S3 bucket to where the participant is being recorded, if individual participant recording is enabled, or "" (empty string), if recording is not enabled.
1066
+ * S3 prefix of the S3 bucket where the participant is being recorded, if individual participant recording is enabled, or "" (empty string), if recording is not enabled.
974
1067
  */
975
1068
  recordingS3Prefix?: ParticipantRecordingS3Prefix;
976
1069
  /**
977
- * Participant’s recording state.
1070
+ * The participant’s recording state.
978
1071
  */
979
1072
  recordingState?: ParticipantRecordingState;
980
1073
  }
@@ -1011,7 +1104,7 @@ declare namespace IVSRealTime {
1011
1104
  */
1012
1105
  published?: Published;
1013
1106
  /**
1014
- * Participant’s recording state.
1107
+ * The participant’s recording state.
1015
1108
  */
1016
1109
  recordingState?: ParticipantRecordingState;
1017
1110
  }
@@ -1076,7 +1169,7 @@ declare namespace IVSRealTime {
1076
1169
  export type PipBehavior = "STATIC"|"DYNAMIC"|string;
1077
1170
  export interface PipConfiguration {
1078
1171
  /**
1079
- * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot.
1172
+ * This attribute name identifies the featured slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the featured slot. Default: "" (no featured participant).
1080
1173
  */
1081
1174
  featuredParticipantAttribute?: AttributeKey;
1082
1175
  /**
@@ -1084,7 +1177,7 @@ declare namespace IVSRealTime {
1084
1177
  */
1085
1178
  omitStoppedVideo?: OmitStoppedVideo;
1086
1179
  /**
1087
- * Defines how video fits within the participant tile. Default: COVER.
1180
+ * Defines how video content fits within the participant tile: FILL (stretched), COVER (cropped), or CONTAIN (letterboxed). Default: COVER.
1088
1181
  */
1089
1182
  videoFillMode?: VideoFillMode;
1090
1183
  /**
@@ -1092,11 +1185,11 @@ declare namespace IVSRealTime {
1092
1185
  */
1093
1186
  gridGap?: GridGap;
1094
1187
  /**
1095
- * Identifies the PiP slot. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the PiP slot.
1188
+ * Specifies the participant for the PiP window. A participant with this attribute set to "true" (as a string value) in ParticipantTokenConfiguration is placed in the PiP slot. Default: "" (no PiP participant).
1096
1189
  */
1097
1190
  pipParticipantAttribute?: AttributeKey;
1098
1191
  /**
1099
- * Defines PiP behavior when all participants have left. Default: STATIC.
1192
+ * Defines PiP behavior when all participants have left: STATIC (maintains original position/size) or DYNAMIC (expands to full composition). Default: STATIC.
1100
1193
  */
1101
1194
  pipBehavior?: PipBehavior;
1102
1195
  /**
@@ -1120,6 +1213,47 @@ declare namespace IVSRealTime {
1120
1213
  export type PipOffset = number;
1121
1214
  export type PipPosition = "TOP_LEFT"|"TOP_RIGHT"|"BOTTOM_LEFT"|"BOTTOM_RIGHT"|string;
1122
1215
  export type PipWidth = number;
1216
+ export interface PublicKey {
1217
+ /**
1218
+ * Public key ARN.
1219
+ */
1220
+ arn?: PublicKeyArn;
1221
+ /**
1222
+ * Public key name.
1223
+ */
1224
+ name?: PublicKeyName;
1225
+ /**
1226
+ * Public key material.
1227
+ */
1228
+ publicKeyMaterial?: PublicKeyMaterial;
1229
+ /**
1230
+ * The public key fingerprint, a short string used to identify or verify the full public key.
1231
+ */
1232
+ fingerprint?: PublicKeyFingerprint;
1233
+ /**
1234
+ * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
1235
+ */
1236
+ tags?: Tags;
1237
+ }
1238
+ export type PublicKeyArn = string;
1239
+ export type PublicKeyFingerprint = string;
1240
+ export type PublicKeyList = PublicKeySummary[];
1241
+ export type PublicKeyMaterial = string;
1242
+ export type PublicKeyName = string;
1243
+ export interface PublicKeySummary {
1244
+ /**
1245
+ * Public key ARN.
1246
+ */
1247
+ arn?: PublicKeyArn;
1248
+ /**
1249
+ * Public key name.
1250
+ */
1251
+ name?: PublicKeyName;
1252
+ /**
1253
+ * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
1254
+ */
1255
+ tags?: Tags;
1256
+ }
1123
1257
  export type Published = boolean;
1124
1258
  export interface RecordingConfiguration {
1125
1259
  /**
@@ -1174,11 +1308,26 @@ declare namespace IVSRealTime {
1174
1308
  */
1175
1309
  tags?: Tags;
1176
1310
  /**
1177
- * Auto-participant-recording configuration object attached to the stage.
1311
+ * Configuration object for individual participant recording, attached to the stage.
1178
1312
  */
1179
1313
  autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
1314
+ /**
1315
+ * Summary information about various endpoints for a stage.
1316
+ */
1317
+ endpoints?: StageEndpoints;
1180
1318
  }
1181
1319
  export type StageArn = string;
1320
+ export type StageEndpoint = string;
1321
+ export interface StageEndpoints {
1322
+ /**
1323
+ * Events endpoint.
1324
+ */
1325
+ events?: StageEndpoint;
1326
+ /**
1327
+ * WHIP endpoint.
1328
+ */
1329
+ whip?: StageEndpoint;
1330
+ }
1182
1331
  export type StageName = string;
1183
1332
  export interface StageSession {
1184
1333
  /**
@@ -1344,7 +1493,7 @@ declare namespace IVSRealTime {
1344
1493
  */
1345
1494
  name?: StageName;
1346
1495
  /**
1347
- * Auto-participant-recording configuration object to attach to the stage. Auto-participant-recording configuration cannot be updated while recording is active.
1496
+ * Configuration object for individual participant recording, to attach to the stage. Note that this cannot be updated while recording is active.
1348
1497
  */
1349
1498
  autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
1350
1499
  }
@@ -147,6 +147,14 @@ declare class KinesisAnalyticsV2 extends Service {
147
147
  * Returns information about a specific Managed Service for Apache Flink application. If you want to retrieve a list of all applications in your account, use the ListApplications operation.
148
148
  */
149
149
  describeApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationResponse, AWSError>;
150
+ /**
151
+ * Returns information about a specific operation performed on a Managed Service for Apache Flink application
152
+ */
153
+ describeApplicationOperation(params: KinesisAnalyticsV2.Types.DescribeApplicationOperationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationOperationResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationOperationResponse, AWSError>;
154
+ /**
155
+ * Returns information about a specific operation performed on a Managed Service for Apache Flink application
156
+ */
157
+ describeApplicationOperation(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DescribeApplicationOperationResponse) => void): Request<KinesisAnalyticsV2.Types.DescribeApplicationOperationResponse, AWSError>;
150
158
  /**
151
159
  * Returns information about a snapshot of application state data.
152
160
  */
@@ -171,6 +179,14 @@ declare class KinesisAnalyticsV2 extends Service {
171
179
  * Infers a schema for a SQL-based Kinesis Data Analytics application by evaluating sample records on the specified streaming source (Kinesis data stream or Kinesis Data Firehose delivery stream) or Amazon S3 object. In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema. You can use the inferred schema when configuring a streaming source for your application. When you create an application using the Kinesis Data Analytics console, the console uses this operation to infer a schema and show it in the console user interface.
172
180
  */
173
181
  discoverInputSchema(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.DiscoverInputSchemaResponse) => void): Request<KinesisAnalyticsV2.Types.DiscoverInputSchemaResponse, AWSError>;
182
+ /**
183
+ * Lists information about operations performed on a Managed Service for Apache Flink application
184
+ */
185
+ listApplicationOperations(params: KinesisAnalyticsV2.Types.ListApplicationOperationsRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationOperationsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationOperationsResponse, AWSError>;
186
+ /**
187
+ * Lists information about operations performed on a Managed Service for Apache Flink application
188
+ */
189
+ listApplicationOperations(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListApplicationOperationsResponse) => void): Request<KinesisAnalyticsV2.Types.ListApplicationOperationsResponse, AWSError>;
174
190
  /**
175
191
  * Lists information about the current application snapshots.
176
192
  */
@@ -204,11 +220,11 @@ declare class KinesisAnalyticsV2 extends Service {
204
220
  */
205
221
  listTagsForResource(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.ListTagsForResourceResponse) => void): Request<KinesisAnalyticsV2.Types.ListTagsForResourceResponse, AWSError>;
206
222
  /**
207
- * Reverts the application to the previous running version. You can roll back an application if you suspect it is stuck in a transient status. You can roll back an application only if it is in the UPDATING or AUTOSCALING status. When you rollback an application, it loads state data from the last successful snapshot. If the application has no snapshots, Managed Service for Apache Flink rejects the rollback request. This action is not supported for Managed Service for Apache Flink for SQL applications.
223
+ * Reverts the application to the previous running version. You can roll back an application if you suspect it is stuck in a transient status or in the running status. You can roll back an application only if it is in the UPDATING, AUTOSCALING, or RUNNING statuses. When you rollback an application, it loads state data from the last successful snapshot. If the application has no snapshots, Managed Service for Apache Flink rejects the rollback request.
208
224
  */
209
225
  rollbackApplication(params: KinesisAnalyticsV2.Types.RollbackApplicationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.RollbackApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.RollbackApplicationResponse, AWSError>;
210
226
  /**
211
- * Reverts the application to the previous running version. You can roll back an application if you suspect it is stuck in a transient status. You can roll back an application only if it is in the UPDATING or AUTOSCALING status. When you rollback an application, it loads state data from the last successful snapshot. If the application has no snapshots, Managed Service for Apache Flink rejects the rollback request. This action is not supported for Managed Service for Apache Flink for SQL applications.
227
+ * Reverts the application to the previous running version. You can roll back an application if you suspect it is stuck in a transient status or in the running status. You can roll back an application only if it is in the UPDATING, AUTOSCALING, or RUNNING statuses. When you rollback an application, it loads state data from the last successful snapshot. If the application has no snapshots, Managed Service for Apache Flink rejects the rollback request.
212
228
  */
213
229
  rollbackApplication(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.RollbackApplicationResponse) => void): Request<KinesisAnalyticsV2.Types.RollbackApplicationResponse, AWSError>;
214
230
  /**
@@ -292,6 +308,10 @@ declare namespace KinesisAnalyticsV2 {
292
308
  * The descriptions of the current CloudWatch logging options for the SQL-based Kinesis Data Analytics application.
293
309
  */
294
310
  CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescriptions;
311
+ /**
312
+ * Operation ID for tracking AddApplicationCloudWatchLoggingOption request
313
+ */
314
+ OperationId?: OperationId;
295
315
  }
296
316
  export interface AddApplicationInputProcessingConfigurationRequest {
297
317
  /**
@@ -444,6 +464,10 @@ declare namespace KinesisAnalyticsV2 {
444
464
  * The parameters of the new VPC configuration.
445
465
  */
446
466
  VpcConfigurationDescription?: VpcConfigurationDescription;
467
+ /**
468
+ * Operation ID for tracking AddApplicationVpcConfiguration request
469
+ */
470
+ OperationId?: OperationId;
447
471
  }
448
472
  export interface ApplicationCodeConfiguration {
449
473
  /**
@@ -496,6 +520,7 @@ declare namespace KinesisAnalyticsV2 {
496
520
  * Describes whether snapshots are enabled for a Managed Service for Apache Flink application.
497
521
  */
498
522
  ApplicationSnapshotConfiguration?: ApplicationSnapshotConfiguration;
523
+ ApplicationSystemRollbackConfiguration?: ApplicationSystemRollbackConfiguration;
499
524
  /**
500
525
  * The array of descriptions of VPC configurations available to the application.
501
526
  */
@@ -530,6 +555,7 @@ declare namespace KinesisAnalyticsV2 {
530
555
  * Describes whether snapshots are enabled for a Managed Service for Apache Flink application.
531
556
  */
532
557
  ApplicationSnapshotConfigurationDescription?: ApplicationSnapshotConfigurationDescription;
558
+ ApplicationSystemRollbackConfigurationDescription?: ApplicationSystemRollbackConfigurationDescription;
533
559
  /**
534
560
  * The array of descriptions of VPC configurations available to the application.
535
561
  */
@@ -560,6 +586,7 @@ declare namespace KinesisAnalyticsV2 {
560
586
  * Describes whether snapshots are enabled for a Managed Service for Apache Flink application.
561
587
  */
562
588
  ApplicationSnapshotConfigurationUpdate?: ApplicationSnapshotConfigurationUpdate;
589
+ ApplicationSystemRollbackConfigurationUpdate?: ApplicationSystemRollbackConfigurationUpdate;
563
590
  /**
564
591
  * Updates to the array of descriptions of VPC configurations available to the application.
565
592
  */
@@ -627,6 +654,10 @@ declare namespace KinesisAnalyticsV2 {
627
654
  * If you reverted the application using RollbackApplication, the application version when RollbackApplication was called.
628
655
  */
629
656
  ApplicationVersionRolledBackFrom?: ApplicationVersionId;
657
+ /**
658
+ * The current timestamp when the application version was created.
659
+ */
660
+ ApplicationVersionCreateTimestamp?: Timestamp;
630
661
  /**
631
662
  * A value you use to implement strong concurrency for application updates.
632
663
  */
@@ -660,6 +691,34 @@ declare namespace KinesisAnalyticsV2 {
660
691
  export type ApplicationMaintenanceWindowStartTime = string;
661
692
  export type ApplicationMode = "STREAMING"|"INTERACTIVE"|string;
662
693
  export type ApplicationName = string;
694
+ export interface ApplicationOperationInfo {
695
+ Operation?: Operation;
696
+ OperationId?: OperationId;
697
+ /**
698
+ * The timestamp at which the operation was created
699
+ */
700
+ StartTime?: Timestamp;
701
+ /**
702
+ * The timestamp at which the operation finished for the application
703
+ */
704
+ EndTime?: Timestamp;
705
+ OperationStatus?: OperationStatus;
706
+ }
707
+ export interface ApplicationOperationInfoDetails {
708
+ Operation: Operation;
709
+ /**
710
+ * The timestamp at which the operation was created
711
+ */
712
+ StartTime: Timestamp;
713
+ /**
714
+ * The timestamp at which the operation finished for the application
715
+ */
716
+ EndTime: Timestamp;
717
+ OperationStatus: OperationStatus;
718
+ ApplicationVersionChangeDetails?: ApplicationVersionChangeDetails;
719
+ OperationFailureDetails?: OperationFailureDetails;
720
+ }
721
+ export type ApplicationOperationInfoList = ApplicationOperationInfo[];
663
722
  export interface ApplicationRestoreConfiguration {
664
723
  /**
665
724
  * Specifies how the application should be restored.
@@ -717,6 +776,34 @@ declare namespace KinesisAnalyticsV2 {
717
776
  */
718
777
  ApplicationMode?: ApplicationMode;
719
778
  }
779
+ export interface ApplicationSystemRollbackConfiguration {
780
+ /**
781
+ * Describes whether system rollbacks are enabled for a Managed Service for Apache Flink application
782
+ */
783
+ RollbackEnabled: BooleanObject;
784
+ }
785
+ export interface ApplicationSystemRollbackConfigurationDescription {
786
+ /**
787
+ * Describes whether system rollbacks are enabled for a Managed Service for Apache Flink application
788
+ */
789
+ RollbackEnabled: BooleanObject;
790
+ }
791
+ export interface ApplicationSystemRollbackConfigurationUpdate {
792
+ /**
793
+ * Describes whether system rollbacks are enabled for a Managed Service for Apache Flink application
794
+ */
795
+ RollbackEnabledUpdate: BooleanObject;
796
+ }
797
+ export interface ApplicationVersionChangeDetails {
798
+ /**
799
+ * The operation was performed on this version of the application
800
+ */
801
+ ApplicationVersionUpdatedFrom: ApplicationVersionId;
802
+ /**
803
+ * The operation execution resulted in the transition to the following version of the application
804
+ */
805
+ ApplicationVersionUpdatedTo: ApplicationVersionId;
806
+ }
720
807
  export type ApplicationVersionId = number;
721
808
  export type ApplicationVersionSummaries = ApplicationVersionSummary[];
722
809
  export interface ApplicationVersionSummary {
@@ -1029,6 +1116,10 @@ declare namespace KinesisAnalyticsV2 {
1029
1116
  * The descriptions of the remaining CloudWatch logging options for the application.
1030
1117
  */
1031
1118
  CloudWatchLoggingOptionDescriptions?: CloudWatchLoggingOptionDescriptions;
1119
+ /**
1120
+ * Operation ID for tracking DeleteApplicationCloudWatchLoggingOption request
1121
+ */
1122
+ OperationId?: OperationId;
1032
1123
  }
1033
1124
  export interface DeleteApplicationInputProcessingConfigurationRequest {
1034
1125
  /**
@@ -1157,6 +1248,10 @@ declare namespace KinesisAnalyticsV2 {
1157
1248
  * The updated version ID of the application.
1158
1249
  */
1159
1250
  ApplicationVersionId?: ApplicationVersionId;
1251
+ /**
1252
+ * Operation ID for tracking DeleteApplicationVpcConfiguration request
1253
+ */
1254
+ OperationId?: OperationId;
1160
1255
  }
1161
1256
  export interface DeployAsApplicationConfiguration {
1162
1257
  /**
@@ -1176,6 +1271,13 @@ declare namespace KinesisAnalyticsV2 {
1176
1271
  */
1177
1272
  S3ContentLocationUpdate?: S3ContentBaseLocationUpdate;
1178
1273
  }
1274
+ export interface DescribeApplicationOperationRequest {
1275
+ ApplicationName: ApplicationName;
1276
+ OperationId: OperationId;
1277
+ }
1278
+ export interface DescribeApplicationOperationResponse {
1279
+ ApplicationOperationInfoDetails?: ApplicationOperationInfoDetails;
1280
+ }
1179
1281
  export interface DescribeApplicationRequest {
1180
1282
  /**
1181
1283
  * The name of the application.
@@ -1285,6 +1387,10 @@ declare namespace KinesisAnalyticsV2 {
1285
1387
  */
1286
1388
  PropertyGroups: PropertyGroups;
1287
1389
  }
1390
+ export interface ErrorInfo {
1391
+ ErrorString?: ErrorString;
1392
+ }
1393
+ export type ErrorString = string;
1288
1394
  export type FileKey = string;
1289
1395
  export interface FlinkApplicationConfiguration {
1290
1396
  /**
@@ -1649,6 +1755,18 @@ declare namespace KinesisAnalyticsV2 {
1649
1755
  */
1650
1756
  ResourceARNUpdate: ResourceARN;
1651
1757
  }
1758
+ export type ListApplicationOperationsInputLimit = number;
1759
+ export interface ListApplicationOperationsRequest {
1760
+ ApplicationName: ApplicationName;
1761
+ Limit?: ListApplicationOperationsInputLimit;
1762
+ NextToken?: NextToken;
1763
+ Operation?: Operation;
1764
+ OperationStatus?: OperationStatus;
1765
+ }
1766
+ export interface ListApplicationOperationsResponse {
1767
+ ApplicationOperationInfoList?: ApplicationOperationInfoList;
1768
+ NextToken?: NextToken;
1769
+ }
1652
1770
  export interface ListApplicationSnapshotsRequest {
1653
1771
  /**
1654
1772
  * The name of an existing application.
@@ -1807,6 +1925,16 @@ declare namespace KinesisAnalyticsV2 {
1807
1925
  }
1808
1926
  export type NextToken = string;
1809
1927
  export type ObjectVersion = string;
1928
+ export type Operation = string;
1929
+ export interface OperationFailureDetails {
1930
+ /**
1931
+ * Provides the operation ID of a system-rollback operation executed due to failure in the current operation
1932
+ */
1933
+ RollbackOperationId?: OperationId;
1934
+ ErrorInfo?: ErrorInfo;
1935
+ }
1936
+ export type OperationId = string;
1937
+ export type OperationStatus = "IN_PROGRESS"|"CANCELLED"|"SUCCESSFUL"|"FAILED"|string;
1810
1938
  export interface Output {
1811
1939
  /**
1812
1940
  * The name of the in-application stream.
@@ -2065,6 +2193,10 @@ declare namespace KinesisAnalyticsV2 {
2065
2193
  }
2066
2194
  export interface RollbackApplicationResponse {
2067
2195
  ApplicationDetail: ApplicationDetail;
2196
+ /**
2197
+ * Operation ID for tracking RollbackApplication request
2198
+ */
2199
+ OperationId?: OperationId;
2068
2200
  }
2069
2201
  export interface RunConfiguration {
2070
2202
  /**
@@ -2320,6 +2452,10 @@ declare namespace KinesisAnalyticsV2 {
2320
2452
  RunConfiguration?: RunConfiguration;
2321
2453
  }
2322
2454
  export interface StartApplicationResponse {
2455
+ /**
2456
+ * Operation ID for tracking StartApplication request
2457
+ */
2458
+ OperationId?: OperationId;
2323
2459
  }
2324
2460
  export interface StopApplicationRequest {
2325
2461
  /**
@@ -2332,6 +2468,10 @@ declare namespace KinesisAnalyticsV2 {
2332
2468
  Force?: BooleanObject;
2333
2469
  }
2334
2470
  export interface StopApplicationResponse {
2471
+ /**
2472
+ * Operation ID for tracking StopApplication request
2473
+ */
2474
+ OperationId?: OperationId;
2335
2475
  }
2336
2476
  export type SubnetId = string;
2337
2477
  export type SubnetIds = SubnetId[];
@@ -2434,6 +2574,10 @@ declare namespace KinesisAnalyticsV2 {
2434
2574
  * Describes application updates.
2435
2575
  */
2436
2576
  ApplicationDetail: ApplicationDetail;
2577
+ /**
2578
+ * Operation ID for tracking UpdateApplication request
2579
+ */
2580
+ OperationId?: OperationId;
2437
2581
  }
2438
2582
  export type UrlType = "FLINK_DASHBOARD_URL"|"ZEPPELIN_UI_URL"|string;
2439
2583
  export interface VpcConfiguration {