aws-sdk 2.1561.0 → 2.1563.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.
@@ -423,11 +423,11 @@ declare class DynamoDB extends DynamoDBCustomizations {
423
423
  */
424
424
  updateKinesisStreamingDestination(callback?: (err: AWSError, data: DynamoDB.Types.UpdateKinesisStreamingDestinationOutput) => void): Request<DynamoDB.Types.UpdateKinesisStreamingDestinationOutput, AWSError>;
425
425
  /**
426
- * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. This operation only applies to Version 2019.11.21 (Current) of global tables. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it is executing, the table status changes from ACTIVE to UPDATING. While it is UPDATING, you cannot issue another UpdateTable request. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
426
+ * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. This operation only applies to Version 2019.11.21 (Current) of global tables. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it's executing, the table status changes from ACTIVE to UPDATING. While it's UPDATING, you can't issue another UpdateTable request on the base table nor any replicas. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
427
427
  */
428
428
  updateTable(params: DynamoDB.Types.UpdateTableInput, callback?: (err: AWSError, data: DynamoDB.Types.UpdateTableOutput) => void): Request<DynamoDB.Types.UpdateTableOutput, AWSError>;
429
429
  /**
430
- * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. This operation only applies to Version 2019.11.21 (Current) of global tables. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it is executing, the table status changes from ACTIVE to UPDATING. While it is UPDATING, you cannot issue another UpdateTable request. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
430
+ * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given table. This operation only applies to Version 2019.11.21 (Current) of global tables. You can only perform one of the following operations at once: Modify the provisioned throughput settings of the table. Remove a global secondary index from the table. Create a new global secondary index on the table. After the index begins backfilling, you can use UpdateTable to perform other operations. UpdateTable is an asynchronous operation; while it's executing, the table status changes from ACTIVE to UPDATING. While it's UPDATING, you can't issue another UpdateTable request on the base table nor any replicas. When the table returns to the ACTIVE state, the UpdateTable operation is complete.
431
431
  */
432
432
  updateTable(callback?: (err: AWSError, data: DynamoDB.Types.UpdateTableOutput) => void): Request<DynamoDB.Types.UpdateTableOutput, AWSError>;
433
433
  /**
@@ -35,14 +35,6 @@ declare class Firehose extends Service {
35
35
  * Describes the specified delivery stream and its status. For example, after your delivery stream is created, call DescribeDeliveryStream to see whether the delivery stream is ACTIVE and therefore ready for data to be sent to it. If the status of a delivery stream is CREATING_FAILED, this status doesn't change, and you can't invoke CreateDeliveryStream again on it. However, you can invoke the DeleteDeliveryStream operation to delete it. If the status is DELETING_FAILED, you can force deletion by invoking DeleteDeliveryStream again but with DeleteDeliveryStreamInput$AllowForceDelete set to true.
36
36
  */
37
37
  describeDeliveryStream(callback?: (err: AWSError, data: Firehose.Types.DescribeDeliveryStreamOutput) => void): Request<Firehose.Types.DescribeDeliveryStreamOutput, AWSError>;
38
- /**
39
- *
40
- */
41
- getKinesisStream(params: Firehose.Types.GetKinesisStreamInput, callback?: (err: AWSError, data: Firehose.Types.GetKinesisStreamOutput) => void): Request<Firehose.Types.GetKinesisStreamOutput, AWSError>;
42
- /**
43
- *
44
- */
45
- getKinesisStream(callback?: (err: AWSError, data: Firehose.Types.GetKinesisStreamOutput) => void): Request<Firehose.Types.GetKinesisStreamOutput, AWSError>;
46
38
  /**
47
39
  * Lists your delivery streams in alphabetical order of their names. The number of delivery streams might be too large to return using a single call to ListDeliveryStreams. You can limit the number of delivery streams returned, using the Limit parameter. To determine whether there are more delivery streams to list, check the value of HasMoreDeliveryStreams in the output. If there are more delivery streams to list, you can request them by calling this operation again and setting the ExclusiveStartDeliveryStreamName parameter to the name of the last delivery stream returned in the last call.
48
40
  */
@@ -115,18 +107,9 @@ declare class Firehose extends Service {
115
107
  * Updates the specified destination of the specified delivery stream. Use this operation to change the destination type (for example, to replace the Amazon S3 destination with Amazon Redshift) or change the parameters associated with a destination (for example, to change the bucket name of the Amazon S3 destination). The update might not occur immediately. The target delivery stream remains active while the configurations are updated, so data writes to the delivery stream can continue during this process. The updated configurations are usually effective within a few minutes. Switching between Amazon OpenSearch Service and other services is not supported. For an Amazon OpenSearch Service destination, you can only update to another Amazon OpenSearch Service destination. If the destination type is the same, Firehose merges the configuration parameters specified with the destination configuration that already exists on the delivery stream. If any of the parameters are not specified in the call, the existing values are retained. For example, in the Amazon S3 destination, if EncryptionConfiguration is not specified, then the existing EncryptionConfiguration is maintained on the destination. If the destination type is not the same, for example, changing the destination from Amazon S3 to Amazon Redshift, Firehose does not merge any parameters. In this case, all parameters must be specified. Firehose uses CurrentDeliveryStreamVersionId to avoid race conditions and conflicting merges. This is a required field, and the service updates the configuration only if the existing configuration has a version ID that matches. After the update is applied successfully, the version ID is updated, and can be retrieved using DescribeDeliveryStream. Use the new version ID to set CurrentDeliveryStreamVersionId in the next call.
116
108
  */
117
109
  updateDestination(callback?: (err: AWSError, data: Firehose.Types.UpdateDestinationOutput) => void): Request<Firehose.Types.UpdateDestinationOutput, AWSError>;
118
- /**
119
- *
120
- */
121
- verifyResourcesExistForTagris(params: Firehose.Types.TagrisVerifyResourcesExistInput, callback?: (err: AWSError, data: Firehose.Types.TagrisVerifyResourcesExistOutput) => void): Request<Firehose.Types.TagrisVerifyResourcesExistOutput, AWSError>;
122
- /**
123
- *
124
- */
125
- verifyResourcesExistForTagris(callback?: (err: AWSError, data: Firehose.Types.TagrisVerifyResourcesExistOutput) => void): Request<Firehose.Types.TagrisVerifyResourcesExistOutput, AWSError>;
126
110
  }
127
111
  declare namespace Firehose {
128
112
  export type AWSKMSKeyARN = string;
129
- export type AccessKeyId = string;
130
113
  export interface AmazonOpenSearchServerlessBufferingHints {
131
114
  /**
132
115
  * Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).
@@ -1128,13 +1111,6 @@ declare namespace Firehose {
1128
1111
  Details: NonEmptyString;
1129
1112
  }
1130
1113
  export type FileExtension = string;
1131
- export interface GetKinesisStreamInput {
1132
- DeliveryStreamARN: DeliveryStreamARN;
1133
- }
1134
- export interface GetKinesisStreamOutput {
1135
- KinesisStreamARN?: KinesisStreamARN;
1136
- CredentialsForReadingKinesisStream?: SessionCredentials;
1137
- }
1138
1114
  export type HECAcknowledgmentTimeoutInSeconds = number;
1139
1115
  export type HECEndpoint = string;
1140
1116
  export type HECEndpointType = "Raw"|"Event"|string;
@@ -1912,7 +1888,6 @@ declare namespace Firehose {
1912
1888
  */
1913
1889
  VersionId?: NonEmptyStringWithoutWhitespace;
1914
1890
  }
1915
- export type SecretAccessKey = string;
1916
1891
  export type SecurityGroupIdList = NonEmptyStringWithoutWhitespace[];
1917
1892
  export interface Serializer {
1918
1893
  /**
@@ -1924,13 +1899,6 @@ declare namespace Firehose {
1924
1899
  */
1925
1900
  OrcSerDe?: OrcSerDe;
1926
1901
  }
1927
- export interface SessionCredentials {
1928
- AccessKeyId: AccessKeyId;
1929
- SecretAccessKey: SecretAccessKey;
1930
- SessionToken: SessionToken;
1931
- Expiration: Timestamp;
1932
- }
1933
- export type SessionToken = string;
1934
1902
  export type SizeInMBs = number;
1935
1903
  export type SnowflakeAccountUrl = string;
1936
1904
  export type SnowflakeContentColumnName = string;
@@ -2354,25 +2322,6 @@ declare namespace Firehose {
2354
2322
  export type TagKey = string;
2355
2323
  export type TagKeyList = TagKey[];
2356
2324
  export type TagValue = string;
2357
- export type TagrisAccountId = string;
2358
- export type TagrisAmazonResourceName = string;
2359
- export type TagrisInternalId = string;
2360
- export type TagrisStatus = "ACTIVE"|"NOT_ACTIVE"|string;
2361
- export type TagrisSweepList = TagrisSweepListItem[];
2362
- export interface TagrisSweepListItem {
2363
- TagrisAccountId?: TagrisAccountId;
2364
- TagrisAmazonResourceName?: TagrisAmazonResourceName;
2365
- TagrisInternalId?: TagrisInternalId;
2366
- TagrisVersion?: TagrisVersion;
2367
- }
2368
- export type TagrisSweepListResult = {[key: string]: TagrisStatus};
2369
- export interface TagrisVerifyResourcesExistInput {
2370
- TagrisSweepList: TagrisSweepList;
2371
- }
2372
- export interface TagrisVerifyResourcesExistOutput {
2373
- TagrisSweepListResult: TagrisSweepListResult;
2374
- }
2375
- export type TagrisVersion = number;
2376
2325
  export type Timestamp = Date;
2377
2326
  export type TopicName = string;
2378
2327
  export interface UntagDeliveryStreamInput {
@@ -1345,7 +1345,7 @@ declare namespace Lambda {
1345
1345
  */
1346
1346
  StateTransitionReason?: String;
1347
1347
  /**
1348
- * (Kinesis and DynamoDB Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.
1348
+ * (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka event sources only) A configuration object that specifies the destination of an event after Lambda processes it.
1349
1349
  */
1350
1350
  DestinationConfig?: DestinationConfig;
1351
1351
  /**
@@ -2618,7 +2618,7 @@ declare namespace Lambda {
2618
2618
  export type NullableBoolean = boolean;
2619
2619
  export interface OnFailure {
2620
2620
  /**
2621
- * The Amazon Resource Name (ARN) of the destination resource. To retain records of asynchronous invocations, you can configure an Amazon SNS topic, Amazon SQS queue, Lambda function, or Amazon EventBridge event bus as the destination. To retain records of failed invocations from Kinesis and DynamoDB event sources, you can configure an Amazon SNS topic or Amazon SQS queue as the destination. To retain records of failed invocations from self-managed Kafka or Amazon MSK, you can configure an Amazon SNS topic or Amazon SQS queue as the destination.
2621
+ * The Amazon Resource Name (ARN) of the destination resource. To retain records of asynchronous invocations, you can configure an Amazon SNS topic, Amazon SQS queue, Lambda function, or Amazon EventBridge event bus as the destination. To retain records of failed invocations from Kinesis and DynamoDB event sources, you can configure an Amazon SNS topic or Amazon SQS queue as the destination. To retain records of failed invocations from self-managed Kafka or Amazon MSK, you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.
2622
2622
  */
2623
2623
  Destination?: DestinationArn;
2624
2624
  }
@@ -2917,7 +2917,7 @@ declare namespace Lambda {
2917
2917
  export type ResourceArn = string;
2918
2918
  export type ResponseStreamingInvocationType = "RequestResponse"|"DryRun"|string;
2919
2919
  export type RoleArn = string;
2920
- export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"nodejs8.10"|"nodejs10.x"|"nodejs12.x"|"nodejs14.x"|"nodejs16.x"|"java8"|"java8.al2"|"java11"|"python2.7"|"python3.6"|"python3.7"|"python3.8"|"python3.9"|"dotnetcore1.0"|"dotnetcore2.0"|"dotnetcore2.1"|"dotnetcore3.1"|"dotnet6"|"nodejs4.3-edge"|"go1.x"|"ruby2.5"|"ruby2.7"|"provided"|"provided.al2"|"nodejs18.x"|"python3.10"|"java17"|"ruby3.2"|"python3.11"|"nodejs20.x"|"provided.al2023"|"python3.12"|"java21"|string;
2920
+ export type Runtime = "nodejs"|"nodejs4.3"|"nodejs6.10"|"nodejs8.10"|"nodejs10.x"|"nodejs12.x"|"nodejs14.x"|"nodejs16.x"|"java8"|"java8.al2"|"java11"|"python2.7"|"python3.6"|"python3.7"|"python3.8"|"python3.9"|"dotnetcore1.0"|"dotnetcore2.0"|"dotnetcore2.1"|"dotnetcore3.1"|"dotnet6"|"dotnet8"|"nodejs4.3-edge"|"go1.x"|"ruby2.5"|"ruby2.7"|"provided"|"provided.al2"|"nodejs18.x"|"python3.10"|"java17"|"ruby3.2"|"python3.11"|"nodejs20.x"|"provided.al2023"|"python3.12"|"java21"|string;
2921
2921
  export type RuntimeVersionArn = string;
2922
2922
  export interface RuntimeVersionConfig {
2923
2923
  /**
@@ -524,6 +524,10 @@ declare namespace LookoutEquipment {
524
524
  * Indicates the status of the CreateInferenceScheduler operation.
525
525
  */
526
526
  Status?: InferenceSchedulerStatus;
527
+ /**
528
+ * Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is POOR_QUALITY_DETECTED. Otherwise, the value is QUALITY_THRESHOLD_MET. If the model is unlabeled, the model quality can't be assessed and the value of ModelQuality is CANNOT_DETERMINE_QUALITY. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model. For information about using labels with your models, see Understanding labeling. For information about improving the quality of a model, see Best practices with Amazon Lookout for Equipment.
529
+ */
530
+ ModelQuality?: ModelQuality;
527
531
  }
528
532
  export interface CreateLabelGroupRequest {
529
533
  /**
@@ -1274,6 +1278,10 @@ declare namespace LookoutEquipment {
1274
1278
  * Configuration information for the model's pointwise model diagnostics.
1275
1279
  */
1276
1280
  ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
1281
+ /**
1282
+ * Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is POOR_QUALITY_DETECTED. Otherwise, the value is QUALITY_THRESHOLD_MET. If the model is unlabeled, the model quality can't be assessed and the value of ModelQuality is CANNOT_DETERMINE_QUALITY. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model. For information about using labels with your models, see Understanding labeling. For information about improving the quality of a model, see Best practices with Amazon Lookout for Equipment.
1283
+ */
1284
+ ModelQuality?: ModelQuality;
1277
1285
  }
1278
1286
  export interface DescribeModelVersionRequest {
1279
1287
  /**
@@ -1416,6 +1424,10 @@ declare namespace LookoutEquipment {
1416
1424
  * The Amazon S3 output prefix for where Lookout for Equipment saves the pointwise model diagnostics for the model version.
1417
1425
  */
1418
1426
  ModelDiagnosticsResultsObject?: S3Object;
1427
+ /**
1428
+ * Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is POOR_QUALITY_DETECTED. Otherwise, the value is QUALITY_THRESHOLD_MET. If the model is unlabeled, the model quality can't be assessed and the value of ModelQuality is CANNOT_DETERMINE_QUALITY. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model. For information about using labels with your models, see Understanding labeling. For information about improving the quality of a model, see Best practices with Amazon Lookout for Equipment.
1429
+ */
1430
+ ModelQuality?: ModelQuality;
1419
1431
  }
1420
1432
  export interface DescribeResourcePolicyRequest {
1421
1433
  /**
@@ -2341,6 +2353,7 @@ declare namespace LookoutEquipment {
2341
2353
  export type ModelMetrics = string;
2342
2354
  export type ModelName = string;
2343
2355
  export type ModelPromoteMode = "MANAGED"|"MANUAL"|string;
2356
+ export type ModelQuality = "QUALITY_THRESHOLD_MET"|"CANNOT_DETERMINE_QUALITY"|"POOR_QUALITY_DETECTED"|string;
2344
2357
  export type ModelStatus = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"IMPORT_IN_PROGRESS"|string;
2345
2358
  export type ModelSummaries = ModelSummary[];
2346
2359
  export interface ModelSummary {
@@ -2397,6 +2410,10 @@ declare namespace LookoutEquipment {
2397
2410
  */
2398
2411
  RetrainingSchedulerStatus?: RetrainingSchedulerStatus;
2399
2412
  ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
2413
+ /**
2414
+ * Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is POOR_QUALITY_DETECTED. Otherwise, the value is QUALITY_THRESHOLD_MET. If the model is unlabeled, the model quality can't be assessed and the value of ModelQuality is CANNOT_DETERMINE_QUALITY. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model. For information about using labels with your models, see Understanding labeling. For information about improving the quality of a model, see Best practices with Amazon Lookout for Equipment.
2415
+ */
2416
+ ModelQuality?: ModelQuality;
2400
2417
  }
2401
2418
  export type ModelVersion = number;
2402
2419
  export type ModelVersionArn = string;
@@ -2432,6 +2449,10 @@ declare namespace LookoutEquipment {
2432
2449
  * Indicates how this model version was generated.
2433
2450
  */
2434
2451
  SourceType?: ModelVersionSourceType;
2452
+ /**
2453
+ * Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the model quality is poor based on training metrics, the value is POOR_QUALITY_DETECTED. Otherwise, the value is QUALITY_THRESHOLD_MET. If the model is unlabeled, the model quality can't be assessed and the value of ModelQuality is CANNOT_DETERMINE_QUALITY. In this situation, you can get a model quality assessment by adding labels to the input dataset and retraining the model. For information about improving the quality of a model, see Best practices with Amazon Lookout for Equipment.
2454
+ */
2455
+ ModelQuality?: ModelQuality;
2435
2456
  }
2436
2457
  export interface MonotonicValues {
2437
2458
  /**
@@ -525,6 +525,14 @@ declare class MediaLive extends Service {
525
525
  * Update reservation.
526
526
  */
527
527
  updateReservation(callback?: (err: AWSError, data: MediaLive.Types.UpdateReservationResponse) => void): Request<MediaLive.Types.UpdateReservationResponse, AWSError>;
528
+ /**
529
+ * Restart pipelines in one channel that is currently running.
530
+ */
531
+ restartChannelPipelines(params: MediaLive.Types.RestartChannelPipelinesRequest, callback?: (err: AWSError, data: MediaLive.Types.RestartChannelPipelinesResponse) => void): Request<MediaLive.Types.RestartChannelPipelinesResponse, AWSError>;
532
+ /**
533
+ * Restart pipelines in one channel that is currently running.
534
+ */
535
+ restartChannelPipelines(callback?: (err: AWSError, data: MediaLive.Types.RestartChannelPipelinesResponse) => void): Request<MediaLive.Types.RestartChannelPipelinesResponse, AWSError>;
528
536
  /**
529
537
  * Waits for the channelCreated state by periodically calling the underlying MediaLive.describeChanneloperation every 3 seconds (at most 5 times). Wait until a channel has been created
530
538
  */
@@ -1270,7 +1278,7 @@ Alternate rendition that the client will not try to play back by default. Repres
1270
1278
  }
1271
1279
  export interface CaptionDescription {
1272
1280
  /**
1273
- * Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds.
1281
+ * Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds. This signaling is added to HLS output group and MediaPackage output group.
1274
1282
  */
1275
1283
  Accessibility?: AccessibilityType;
1276
1284
  /**
@@ -1397,7 +1405,6 @@ This field corresponds to tts:extent - X in the TTML standard.
1397
1405
  * A list of destinations of the channel. For UDP outputs, there is one
1398
1406
  destination per output. For other types (HLS, for example), there is
1399
1407
  one destination per packager.
1400
-
1401
1408
  */
1402
1409
  Destinations?: __listOfOutputDestination;
1403
1410
  /**
@@ -1476,7 +1483,6 @@ one destination per packager.
1476
1483
  * A list of destinations of the channel. For UDP outputs, there is one
1477
1484
  destination per output. For other types (HLS, for example), there is
1478
1485
  one destination per packager.
1479
-
1480
1486
  */
1481
1487
  Destinations?: __listOfOutputDestination;
1482
1488
  /**
@@ -1590,7 +1596,6 @@ one destination per packager.
1590
1596
  /**
1591
1597
  * Unique request ID to be specified. This is needed to prevent retries from
1592
1598
  creating multiple resources.
1593
-
1594
1599
  */
1595
1600
  RequestId?: __string;
1596
1601
  /**
@@ -1630,7 +1635,6 @@ creating multiple resources.
1630
1635
  * A list of the MediaConnect Flows that you want to use in this input. You can specify as few as one
1631
1636
  Flow and presently, as many as two. The only requirement is when you have more than one is that each Flow is in a
1632
1637
  separate Availability Zone as this ensures your EML input is redundant to AZ issues.
1633
-
1634
1638
  */
1635
1639
  MediaConnectFlows?: __listOfMediaConnectFlowRequest;
1636
1640
  /**
@@ -1640,7 +1644,6 @@ separate Availability Zone as this ensures your EML input is redundant to AZ iss
1640
1644
  /**
1641
1645
  * Unique identifier of the request to ensure the request is handled
1642
1646
  exactly once in case of retries.
1643
-
1644
1647
  */
1645
1648
  RequestId?: __string;
1646
1649
  /**
@@ -1651,7 +1654,6 @@ exactly once in case of retries.
1651
1654
  * The source URLs for a PULL-type input. Every PULL type input needs
1652
1655
  exactly two source URLs for redundancy.
1653
1656
  Only specify sources for PULL type Inputs. Leave Destinations empty.
1654
-
1655
1657
  */
1656
1658
  Sources?: __listOfInputSourceRequest;
1657
1659
  /**
@@ -1693,7 +1695,6 @@ Only specify sources for PULL type Inputs. Leave Destinations empty.
1693
1695
  /**
1694
1696
  * Unique request ID. This prevents retries from creating multiple
1695
1697
  resources.
1696
-
1697
1698
  */
1698
1699
  RequestId: __string;
1699
1700
  }
@@ -1719,7 +1720,6 @@ resources.
1719
1720
  /**
1720
1721
  * Unique request ID. This prevents retries from creating multiple
1721
1722
  resources.
1722
-
1723
1723
  */
1724
1724
  RequestId: __string;
1725
1725
  /**
@@ -1741,7 +1741,6 @@ resources.
1741
1741
  /**
1742
1742
  * Unique identifier of the request to ensure the request is handled
1743
1743
  exactly once in case of retries.
1744
-
1745
1744
  */
1746
1745
  RequestId?: __string;
1747
1746
  /**
@@ -1779,7 +1778,6 @@ exactly once in case of retries.
1779
1778
  * A list of destinations of the channel. For UDP outputs, there is one
1780
1779
  destination per output. For other types (HLS, for example), there is
1781
1780
  one destination per packager.
1782
-
1783
1781
  */
1784
1782
  Destinations?: __listOfOutputDestination;
1785
1783
  /**
@@ -2056,7 +2054,6 @@ one destination per packager.
2056
2054
  * A list of destinations of the channel. For UDP outputs, there is one
2057
2055
  destination per output. For other types (HLS, for example), there is
2058
2056
  one destination per packager.
2059
-
2060
2057
  */
2061
2058
  Destinations?: __listOfOutputDestination;
2062
2059
  /**
@@ -2240,7 +2237,6 @@ one destination per packager.
2240
2237
  /**
2241
2238
  * STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails.
2242
2239
  SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.
2243
-
2244
2240
  */
2245
2241
  InputClass?: InputClass;
2246
2242
  /**
@@ -2254,7 +2250,6 @@ SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelC
2254
2250
  /**
2255
2251
  * Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
2256
2252
  during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
2257
-
2258
2253
  */
2259
2254
  InputSourceType?: InputSourceType;
2260
2255
  /**
@@ -3968,7 +3963,6 @@ Specifies whether MP4 segments should be packaged as HEV1 or HVC1.
3968
3963
  /**
3969
3964
  * STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails.
3970
3965
  SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.
3971
-
3972
3966
  */
3973
3967
  InputClass?: InputClass;
3974
3968
  /**
@@ -3982,7 +3976,6 @@ SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelC
3982
3976
  /**
3983
3977
  * Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
3984
3978
  during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
3985
-
3986
3979
  */
3987
3980
  InputSourceType?: InputSourceType;
3988
3981
  /**
@@ -4062,7 +4055,6 @@ during input switch actions. Presently, this functionality only works with MP4_F
4062
4055
  /**
4063
4056
  * The system-generated static IP address of endpoint.
4064
4057
  It remains fixed for the lifetime of the input.
4065
-
4066
4058
  */
4067
4059
  Ip?: __string;
4068
4060
  /**
@@ -4072,7 +4064,6 @@ It remains fixed for the lifetime of the input.
4072
4064
  /**
4073
4065
  * This represents the endpoint that the customer stream will be
4074
4066
  pushed to.
4075
-
4076
4067
  */
4077
4068
  Url?: __string;
4078
4069
  Vpc?: InputDestinationVpc;
@@ -4081,19 +4072,16 @@ pushed to.
4081
4072
  /**
4082
4073
  * A unique name for the location the RTMP stream is being pushed
4083
4074
  to.
4084
-
4085
4075
  */
4086
4076
  StreamName?: __string;
4087
4077
  }
4088
4078
  export interface InputDestinationVpc {
4089
4079
  /**
4090
4080
  * The availability zone of the Input destination.
4091
-
4092
4081
  */
4093
4082
  AvailabilityZone?: __string;
4094
4083
  /**
4095
4084
  * The network interface ID of the Input destination in the VPC.
4096
-
4097
4085
  */
4098
4086
  NetworkInterfaceId?: __string;
4099
4087
  }
@@ -4508,7 +4496,6 @@ to.
4508
4496
  /**
4509
4497
  * This represents the customer's source URL where stream is
4510
4498
  pulled from.
4511
-
4512
4499
  */
4513
4500
  Url?: __string;
4514
4501
  /**
@@ -4525,7 +4512,6 @@ pulled from.
4525
4512
  /**
4526
4513
  * This represents the customer's source URL where stream is
4527
4514
  pulled from.
4528
-
4529
4515
  */
4530
4516
  Url?: __string;
4531
4517
  /**
@@ -4569,13 +4555,11 @@ pulled from.
4569
4555
  /**
4570
4556
  * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces.
4571
4557
  Requires subnetIds. If none are specified then the VPC default security group will be used.
4572
-
4573
4558
  */
4574
4559
  SecurityGroupIds?: __listOf__string;
4575
4560
  /**
4576
4561
  * A list of 2 VPC subnet IDs from the same VPC.
4577
4562
  Subnet IDs must be mapped to two unique availability zones (AZ).
4578
-
4579
4563
  */
4580
4564
  SubnetIds: __listOf__string;
4581
4565
  }
@@ -4698,12 +4682,10 @@ Subnet IDs must be mapped to two unique availability zones (AZ).
4698
4682
  export interface ListOfferingsRequest {
4699
4683
  /**
4700
4684
  * Filter by channel class, 'STANDARD' or 'SINGLE_PIPELINE'
4701
-
4702
4685
  */
4703
4686
  ChannelClass?: __string;
4704
4687
  /**
4705
4688
  * Filter to offerings that match the configuration of an existing channel, e.g. '2345678' (a channel ID)
4706
-
4707
4689
  */
4708
4690
  ChannelConfiguration?: __string;
4709
4691
  /**
@@ -4717,7 +4699,6 @@ Subnet IDs must be mapped to two unique availability zones (AZ).
4717
4699
  MaxResults?: MaxResults;
4718
4700
  /**
4719
4701
  * Filter by bitrate, 'MAX_10_MBPS', 'MAX_20_MBPS', or 'MAX_50_MBPS'
4720
-
4721
4702
  */
4722
4703
  MaximumBitrate?: __string;
4723
4704
  /**
@@ -4735,12 +4716,10 @@ Subnet IDs must be mapped to two unique availability zones (AZ).
4735
4716
  ResourceType?: __string;
4736
4717
  /**
4737
4718
  * Filter by special feature, 'ADVANCED_AUDIO' or 'AUDIO_NORMALIZATION'
4738
-
4739
4719
  */
4740
4720
  SpecialFeature?: __string;
4741
4721
  /**
4742
4722
  * Filter by video quality, 'STANDARD', 'ENHANCED', or 'PREMIUM'
4743
-
4744
4723
  */
4745
4724
  VideoQuality?: __string;
4746
4725
  }
@@ -4757,7 +4736,6 @@ Subnet IDs must be mapped to two unique availability zones (AZ).
4757
4736
  export interface ListReservationsRequest {
4758
4737
  /**
4759
4738
  * Filter by channel class, 'STANDARD' or 'SINGLE_PIPELINE'
4760
-
4761
4739
  */
4762
4740
  ChannelClass?: __string;
4763
4741
  /**
@@ -4767,7 +4745,6 @@ Subnet IDs must be mapped to two unique availability zones (AZ).
4767
4745
  MaxResults?: MaxResults;
4768
4746
  /**
4769
4747
  * Filter by bitrate, 'MAX_10_MBPS', 'MAX_20_MBPS', or 'MAX_50_MBPS'
4770
-
4771
4748
  */
4772
4749
  MaximumBitrate?: __string;
4773
4750
  /**
@@ -4785,12 +4762,10 @@ Subnet IDs must be mapped to two unique availability zones (AZ).
4785
4762
  ResourceType?: __string;
4786
4763
  /**
4787
4764
  * Filter by special feature, 'ADVANCED_AUDIO' or 'AUDIO_NORMALIZATION'
4788
-
4789
4765
  */
4790
4766
  SpecialFeature?: __string;
4791
4767
  /**
4792
4768
  * Filter by video quality, 'STANDARD', 'ENHANCED', or 'PREMIUM'
4793
-
4794
4769
  */
4795
4770
  VideoQuality?: __string;
4796
4771
  }
@@ -6497,7 +6472,6 @@ provide the language to consider when translating the image-based source to text
6497
6472
  * A list of destinations of the channel. For UDP outputs, there is one
6498
6473
  destination per output. For other types (HLS, for example), there is
6499
6474
  one destination per packager.
6500
-
6501
6475
  */
6502
6476
  Destinations?: __listOfOutputDestination;
6503
6477
  /**
@@ -6766,7 +6740,6 @@ one destination per packager.
6766
6740
  * A list of destinations of the channel. For UDP outputs, there is one
6767
6741
  destination per output. For other types (HLS, for example), there is
6768
6742
  one destination per packager.
6769
-
6770
6743
  */
6771
6744
  Destinations?: __listOfOutputDestination;
6772
6745
  /**
@@ -7231,7 +7204,6 @@ one destination per packager.
7231
7204
  * A list of the MediaConnect Flow ARNs that you want to use as the source of the input. You can specify as few as one
7232
7205
  Flow and presently, as many as two. The only requirement is when you have more than one is that each Flow is in a
7233
7206
  separate Availability Zone as this ensures your EML input is redundant to AZ issues.
7234
-
7235
7207
  */
7236
7208
  MediaConnectFlows?: __listOfMediaConnectFlowRequest;
7237
7209
  /**
@@ -7246,7 +7218,6 @@ separate Availability Zone as this ensures your EML input is redundant to AZ iss
7246
7218
  * The source URLs for a PULL-type input. Every PULL type input needs
7247
7219
  exactly two source URLs for redundancy.
7248
7220
  Only specify sources for PULL type Inputs. Leave Destinations empty.
7249
-
7250
7221
  */
7251
7222
  Sources?: __listOfInputSourceRequest;
7252
7223
  }
@@ -7421,19 +7392,16 @@ NONE: MediaLive does not clip the input video and does not include the AFD value
7421
7392
  /**
7422
7393
  * List of public address allocation ids to associate with ENIs that will be created in Output VPC.
7423
7394
  Must specify one for SINGLE_PIPELINE, two for STANDARD channels
7424
-
7425
7395
  */
7426
7396
  PublicAddressAllocationIds?: __listOf__string;
7427
7397
  /**
7428
7398
  * A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces.
7429
7399
  If none are specified then the VPC default security group will be used
7430
-
7431
7400
  */
7432
7401
  SecurityGroupIds?: __listOf__string;
7433
7402
  /**
7434
7403
  * A list of VPC subnet IDs from the same VPC.
7435
7404
  If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).
7436
-
7437
7405
  */
7438
7406
  SubnetIds: __listOf__string;
7439
7407
  }
@@ -7442,23 +7410,19 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
7442
7410
  * The Availability Zones where the vpc subnets are located.
7443
7411
  The first Availability Zone applies to the first subnet in the list of subnets.
7444
7412
  The second Availability Zone applies to the second subnet.
7445
-
7446
7413
  */
7447
7414
  AvailabilityZones?: __listOf__string;
7448
7415
  /**
7449
7416
  * A list of Elastic Network Interfaces created by MediaLive in the customer's VPC
7450
-
7451
7417
  */
7452
7418
  NetworkInterfaceIds?: __listOf__string;
7453
7419
  /**
7454
7420
  * A list of up EC2 VPC security group IDs attached to the Output VPC network interfaces.
7455
-
7456
7421
  */
7457
7422
  SecurityGroupIds?: __listOf__string;
7458
7423
  /**
7459
7424
  * A list of VPC subnet IDs from the same VPC.
7460
7425
  If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).
7461
-
7462
7426
  */
7463
7427
  SubnetIds?: __listOf__string;
7464
7428
  }
@@ -7646,6 +7610,92 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
7646
7610
  export type InputDeviceUhdAudioChannelPairProfile = "DISABLED"|"VBR-AAC_HHE-16000"|"VBR-AAC_HE-64000"|"VBR-AAC_LC-128000"|"CBR-AAC_HQ-192000"|"CBR-AAC_HQ-256000"|"CBR-AAC_HQ-384000"|"CBR-AAC_HQ-512000"|string;
7647
7611
  export type __listOfInputDeviceConfigurableAudioChannelPairConfig = InputDeviceConfigurableAudioChannelPairConfig[];
7648
7612
  export type __listOfInputDeviceUhdAudioChannelPairConfig = InputDeviceUhdAudioChannelPairConfig[];
7613
+ export type ChannelPipelineIdToRestart = "PIPELINE_0"|"PIPELINE_1"|string;
7614
+ export interface RestartChannelPipelinesRequest {
7615
+ /**
7616
+ * ID of channel
7617
+ */
7618
+ ChannelId: __string;
7619
+ /**
7620
+ * An array of pipelines to restart in this channel. Format PIPELINE_0 or PIPELINE_1.
7621
+ */
7622
+ PipelineIds?: __listOfChannelPipelineIdToRestart;
7623
+ }
7624
+ export interface RestartChannelPipelinesResponse {
7625
+ /**
7626
+ * The unique arn of the channel.
7627
+ */
7628
+ Arn?: __string;
7629
+ /**
7630
+ * Specification of CDI inputs for this channel
7631
+ */
7632
+ CdiInputSpecification?: CdiInputSpecification;
7633
+ /**
7634
+ * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
7635
+ */
7636
+ ChannelClass?: ChannelClass;
7637
+ /**
7638
+ * A list of destinations of the channel. For UDP outputs, there is one
7639
+ destination per output. For other types (HLS, for example), there is
7640
+ one destination per packager.
7641
+ */
7642
+ Destinations?: __listOfOutputDestination;
7643
+ /**
7644
+ * The endpoints where outgoing connections initiate from
7645
+ */
7646
+ EgressEndpoints?: __listOfChannelEgressEndpoint;
7647
+ EncoderSettings?: EncoderSettings;
7648
+ /**
7649
+ * The unique id of the channel.
7650
+ */
7651
+ Id?: __string;
7652
+ /**
7653
+ * List of input attachments for channel.
7654
+ */
7655
+ InputAttachments?: __listOfInputAttachment;
7656
+ /**
7657
+ * Specification of network and file inputs for this channel
7658
+ */
7659
+ InputSpecification?: InputSpecification;
7660
+ /**
7661
+ * The log level being written to CloudWatch Logs.
7662
+ */
7663
+ LogLevel?: LogLevel;
7664
+ /**
7665
+ * Maintenance settings for this channel.
7666
+ */
7667
+ Maintenance?: MaintenanceStatus;
7668
+ /**
7669
+ * The time in milliseconds by when the PVRE restart must occur.
7670
+ */
7671
+ MaintenanceStatus?: __string;
7672
+ /**
7673
+ * The name of the channel. (user-mutable)
7674
+ */
7675
+ Name?: __string;
7676
+ /**
7677
+ * Runtime details for the pipelines of a running channel.
7678
+ */
7679
+ PipelineDetails?: __listOfPipelineDetail;
7680
+ /**
7681
+ * The number of currently healthy pipelines.
7682
+ */
7683
+ PipelinesRunningCount?: __integer;
7684
+ /**
7685
+ * The Amazon Resource Name (ARN) of the role assumed when running the Channel.
7686
+ */
7687
+ RoleArn?: __string;
7688
+ State?: ChannelState;
7689
+ /**
7690
+ * A collection of key-value pairs.
7691
+ */
7692
+ Tags?: Tags;
7693
+ /**
7694
+ * Settings for VPC output
7695
+ */
7696
+ Vpc?: VpcOutputSettingsDescription;
7697
+ }
7698
+ export type __listOfChannelPipelineIdToRestart = ChannelPipelineIdToRestart[];
7649
7699
  /**
7650
7700
  * 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.
7651
7701
  */