aws-sdk 2.1004.0 → 2.1008.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +24 -1
  2. package/README.md +1 -1
  3. package/apis/autoscaling-2011-01-01.min.json +62 -56
  4. package/apis/ec2-2016-11-15.min.json +813 -781
  5. package/apis/elasticloadbalancingv2-2015-12-01.min.json +32 -26
  6. package/apis/frauddetector-2019-11-15.min.json +358 -75
  7. package/apis/frauddetector-2019-11-15.paginators.json +5 -0
  8. package/apis/kinesisanalyticsv2-2018-05-23.min.json +3 -6
  9. package/apis/medialive-2017-10-14.min.json +297 -227
  10. package/apis/mediatailor-2018-04-23.min.json +288 -75
  11. package/apis/mediatailor-2018-04-23.paginators.json +6 -0
  12. package/apis/robomaker-2018-06-29.min.json +213 -200
  13. package/apis/sagemaker-2017-07-24.min.json +1 -2
  14. package/apis/storagegateway-2013-06-30.min.json +53 -9
  15. package/apis/workmail-2017-10-01.min.json +156 -27
  16. package/apis/workmail-2017-10-01.paginators.json +5 -0
  17. package/clients/autoscaling.d.ts +12 -8
  18. package/clients/configservice.d.ts +1 -1
  19. package/clients/ec2.d.ts +128 -86
  20. package/clients/ecs.d.ts +4 -4
  21. package/clients/elbv2.d.ts +18 -1
  22. package/clients/frauddetector.d.ts +434 -26
  23. package/clients/kinesisanalyticsv2.d.ts +30 -30
  24. package/clients/medialive.d.ts +76 -5
  25. package/clients/mediatailor.d.ts +224 -0
  26. package/clients/robomaker.d.ts +54 -9
  27. package/clients/sagemaker.d.ts +2 -2
  28. package/clients/storagegateway.d.ts +85 -33
  29. package/clients/workmail.d.ts +171 -7
  30. package/dist/aws-sdk-core-react-native.js +1 -1
  31. package/dist/aws-sdk-react-native.js +15 -15
  32. package/dist/aws-sdk.js +963 -875
  33. package/dist/aws-sdk.min.js +70 -70
  34. package/lib/core.js +1 -1
  35. package/package.json +1 -1
@@ -28,19 +28,19 @@ declare class KinesisAnalyticsV2 extends Service {
28
28
  */
29
29
  addApplicationInput(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationInputResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationInputResponse, AWSError>;
30
30
  /**
31
- * Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is AWS Lambda.
31
+ * Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is Amazon Lambda.
32
32
  */
33
33
  addApplicationInputProcessingConfiguration(params: KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse, AWSError>;
34
34
  /**
35
- * Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is AWS Lambda.
35
+ * Adds an InputProcessingConfiguration to a SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is Amazon Lambda.
36
36
  */
37
37
  addApplicationInputProcessingConfiguration(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationInputProcessingConfigurationResponse, AWSError>;
38
38
  /**
39
- * Adds an external destination to your SQL-based Kinesis Data Analytics application. If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination. You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
39
+ * Adds an external destination to your SQL-based Kinesis Data Analytics application. If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination. You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
40
40
  */
41
41
  addApplicationOutput(params: KinesisAnalyticsV2.Types.AddApplicationOutputRequest, callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationOutputResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationOutputResponse, AWSError>;
42
42
  /**
43
- * Adds an external destination to your SQL-based Kinesis Data Analytics application. If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination. You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
43
+ * Adds an external destination to your SQL-based Kinesis Data Analytics application. If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination. You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.
44
44
  */
45
45
  addApplicationOutput(callback?: (err: AWSError, data: KinesisAnalyticsV2.Types.AddApplicationOutputResponse) => void): Request<KinesisAnalyticsV2.Types.AddApplicationOutputResponse, AWSError>;
46
46
  /**
@@ -367,7 +367,7 @@ declare namespace KinesisAnalyticsV2 {
367
367
  */
368
368
  CurrentApplicationVersionId: ApplicationVersionId;
369
369
  /**
370
- * An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.
370
+ * An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), and record the formation to use when writing to the destination.
371
371
  */
372
372
  Output: Output;
373
373
  }
@@ -689,7 +689,7 @@ declare namespace KinesisAnalyticsV2 {
689
689
  */
690
690
  SnapshotsEnabledUpdate: BooleanObject;
691
691
  }
692
- export type ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING"|"MAINTENANCE"|"ROLLING_BACK"|"ROLLED_BACK"|string;
692
+ export type ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING"|"ROLLING_BACK"|"MAINTENANCE"|"ROLLED_BACK"|string;
693
693
  export type ApplicationSummaries = ApplicationSummary[];
694
694
  export interface ApplicationSummary {
695
695
  /**
@@ -746,19 +746,19 @@ declare namespace KinesisAnalyticsV2 {
746
746
  }
747
747
  export interface CatalogConfiguration {
748
748
  /**
749
- * The configuration parameters for the default AWS Glue database. You use this database for Apache Flink SQL queries and table API transforms that you write in a Kinesis Data Analytics Studio notebook.
749
+ * The configuration parameters for the default Amazon Glue database. You use this database for Apache Flink SQL queries and table API transforms that you write in a Kinesis Data Analytics Studio notebook.
750
750
  */
751
751
  GlueDataCatalogConfiguration: GlueDataCatalogConfiguration;
752
752
  }
753
753
  export interface CatalogConfigurationDescription {
754
754
  /**
755
- * The configuration parameters for the default AWS Glue database. You use this database for SQL queries that you write in a Kinesis Data Analytics Studio notebook.
755
+ * The configuration parameters for the default Amazon Glue database. You use this database for SQL queries that you write in a Kinesis Data Analytics Studio notebook.
756
756
  */
757
757
  GlueDataCatalogConfigurationDescription: GlueDataCatalogConfigurationDescription;
758
758
  }
759
759
  export interface CatalogConfigurationUpdate {
760
760
  /**
761
- * Updates to the configuration parameters for the default AWS Glue database. You use this database for SQL queries that you write in a Kinesis Data Analytics Studio notebook.
761
+ * Updates to the configuration parameters for the default Amazon Glue database. You use this database for SQL queries that you write in a Kinesis Data Analytics Studio notebook.
762
762
  */
763
763
  GlueDataCatalogConfigurationUpdate: GlueDataCatalogConfigurationUpdate;
764
764
  }
@@ -1174,7 +1174,7 @@ declare namespace KinesisAnalyticsV2 {
1174
1174
  /**
1175
1175
  * Updates to the location that holds the data required to specify an Amazon Data Analytics application.
1176
1176
  */
1177
- S3ContentLocationUpdate: S3ContentBaseLocationUpdate;
1177
+ S3ContentLocationUpdate?: S3ContentBaseLocationUpdate;
1178
1178
  }
1179
1179
  export interface DescribeApplicationRequest {
1180
1180
  /**
@@ -1354,7 +1354,7 @@ declare namespace KinesisAnalyticsV2 {
1354
1354
  /**
1355
1355
  * The updated Amazon Resource Name (ARN) of the database.
1356
1356
  */
1357
- DatabaseARNUpdate?: DatabaseARN;
1357
+ DatabaseARNUpdate: DatabaseARN;
1358
1358
  }
1359
1359
  export type Id = string;
1360
1360
  export type InAppStreamName = string;
@@ -1427,23 +1427,23 @@ declare namespace KinesisAnalyticsV2 {
1427
1427
  export type InputDescriptions = InputDescription[];
1428
1428
  export interface InputLambdaProcessor {
1429
1429
  /**
1430
- * The ARN of the AWS Lambda function that operates on records in the stream. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda
1430
+ * The ARN of the Amazon Lambda function that operates on records in the stream. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: Amazon Lambda
1431
1431
  */
1432
1432
  ResourceARN: ResourceARN;
1433
1433
  }
1434
1434
  export interface InputLambdaProcessorDescription {
1435
1435
  /**
1436
- * The ARN of the AWS Lambda function that is used to preprocess the records in the stream. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda
1436
+ * The ARN of the Amazon Lambda function that is used to preprocess the records in the stream. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: Amazon Lambda
1437
1437
  */
1438
1438
  ResourceARN: ResourceARN;
1439
1439
  /**
1440
- * The ARN of the IAM role that is used to access the AWS Lambda function. Provided for backward compatibility. Applications that are created with the current API version have an application-level service execution role rather than a resource-level role.
1440
+ * The ARN of the IAM role that is used to access the Amazon Lambda function. Provided for backward compatibility. Applications that are created with the current API version have an application-level service execution role rather than a resource-level role.
1441
1441
  */
1442
1442
  RoleARN?: RoleARN;
1443
1443
  }
1444
1444
  export interface InputLambdaProcessorUpdate {
1445
1445
  /**
1446
- * The Amazon Resource Name (ARN) of the new AWS Lambda function that is used to preprocess the records in the stream. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda
1446
+ * The Amazon Resource Name (ARN) of the new Amazon Lambda function that is used to preprocess the records in the stream. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: Amazon Lambda
1447
1447
  */
1448
1448
  ResourceARNUpdate: ResourceARN;
1449
1449
  }
@@ -1629,7 +1629,7 @@ declare namespace KinesisAnalyticsV2 {
1629
1629
  }
1630
1630
  export interface LambdaOutput {
1631
1631
  /**
1632
- * The Amazon Resource Name (ARN) of the destination Lambda function to write to. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda
1632
+ * The Amazon Resource Name (ARN) of the destination Lambda function to write to. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: Amazon Lambda
1633
1633
  */
1634
1634
  ResourceARN: ResourceARN;
1635
1635
  }
@@ -1645,7 +1645,7 @@ declare namespace KinesisAnalyticsV2 {
1645
1645
  }
1646
1646
  export interface LambdaOutputUpdate {
1647
1647
  /**
1648
- * The Amazon Resource Name (ARN) of the destination AWS Lambda function. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda
1648
+ * The Amazon Resource Name (ARN) of the destination Amazon Lambda function. To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: Amazon Lambda
1649
1649
  */
1650
1650
  ResourceARNUpdate: ResourceARN;
1651
1651
  }
@@ -1684,7 +1684,7 @@ declare namespace KinesisAnalyticsV2 {
1684
1684
  */
1685
1685
  Limit?: ListApplicationVersionsInputLimit;
1686
1686
  /**
1687
- * If a previous invocation of this operation returned a pagination token, pass it into this value to retrieve the next set of results. For more information about pagination, see Using the AWS Command Line Interface's Pagination Options.
1687
+ * If a previous invocation of this operation returned a pagination token, pass it into this value to retrieve the next set of results. For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.
1688
1688
  */
1689
1689
  NextToken?: NextToken;
1690
1690
  }
@@ -1694,7 +1694,7 @@ declare namespace KinesisAnalyticsV2 {
1694
1694
  */
1695
1695
  ApplicationVersionSummaries?: ApplicationVersionSummaries;
1696
1696
  /**
1697
- * The pagination token for the next set of results, or null if there are no additional results. To retrieve the next set of items, pass this token into a subsequent invocation of this operation. For more information about pagination, see Using the AWS Command Line Interface's Pagination Options.
1697
+ * The pagination token for the next set of results, or null if there are no additional results. To retrieve the next set of items, pass this token into a subsequent invocation of this operation. For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.
1698
1698
  */
1699
1699
  NextToken?: NextToken;
1700
1700
  }
@@ -1705,7 +1705,7 @@ declare namespace KinesisAnalyticsV2 {
1705
1705
  */
1706
1706
  Limit?: ListApplicationsInputLimit;
1707
1707
  /**
1708
- * If a previous command returned a pagination token, pass it into this value to retrieve the next set of results. For more information about pagination, see Using the AWS Command Line Interface's Pagination Options.
1708
+ * If a previous command returned a pagination token, pass it into this value to retrieve the next set of results. For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.
1709
1709
  */
1710
1710
  NextToken?: ApplicationName;
1711
1711
  }
@@ -1715,7 +1715,7 @@ declare namespace KinesisAnalyticsV2 {
1715
1715
  */
1716
1716
  ApplicationSummaries: ApplicationSummaries;
1717
1717
  /**
1718
- * The pagination token for the next set of results, or null if there are no additional results. Pass this token into a subsequent command to retrieve the next set of items For more information about pagination, see Using the AWS Command Line Interface's Pagination Options.
1718
+ * The pagination token for the next set of results, or null if there are no additional results. Pass this token into a subsequent command to retrieve the next set of items For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.
1719
1719
  */
1720
1720
  NextToken?: ApplicationName;
1721
1721
  }
@@ -1821,7 +1821,7 @@ declare namespace KinesisAnalyticsV2 {
1821
1821
  */
1822
1822
  KinesisFirehoseOutput?: KinesisFirehoseOutput;
1823
1823
  /**
1824
- * Identifies an AWS Lambda function as the destination.
1824
+ * Identifies an Amazon Lambda function as the destination.
1825
1825
  */
1826
1826
  LambdaOutput?: LambdaOutput;
1827
1827
  /**
@@ -1874,7 +1874,7 @@ declare namespace KinesisAnalyticsV2 {
1874
1874
  */
1875
1875
  KinesisFirehoseOutputUpdate?: KinesisFirehoseOutputUpdate;
1876
1876
  /**
1877
- * Describes an AWS Lambda function as the destination for the output.
1877
+ * Describes an Amazon Lambda function as the destination for the output.
1878
1878
  */
1879
1879
  LambdaOutputUpdate?: LambdaOutputUpdate;
1880
1880
  /**
@@ -2097,7 +2097,7 @@ declare namespace KinesisAnalyticsV2 {
2097
2097
  */
2098
2098
  ApplicationRestoreConfiguration?: ApplicationRestoreConfiguration;
2099
2099
  }
2100
- export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"FLINK-1_11"|"ZEPPELIN-FLINK-1_0"|string;
2100
+ export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|string;
2101
2101
  export interface S3ApplicationCodeLocationDescription {
2102
2102
  /**
2103
2103
  * The Amazon Resource Name (ARN) for the S3 bucket containing the application code.
@@ -2146,7 +2146,7 @@ declare namespace KinesisAnalyticsV2 {
2146
2146
  /**
2147
2147
  * The updated Amazon Resource Name (ARN) of the S3 bucket.
2148
2148
  */
2149
- BucketARNUpdate: BucketARN;
2149
+ BucketARNUpdate?: BucketARN;
2150
2150
  /**
2151
2151
  * The updated S3 bucket path.
2152
2152
  */
@@ -2480,11 +2480,11 @@ declare namespace KinesisAnalyticsV2 {
2480
2480
  */
2481
2481
  MonitoringConfiguration?: ZeppelinMonitoringConfiguration;
2482
2482
  /**
2483
- * The AWS Glue Data Catalog that you use in queries in a Kinesis Data Analytics Studio notebook.
2483
+ * The Amazon Glue Data Catalog that you use in queries in a Kinesis Data Analytics Studio notebook.
2484
2484
  */
2485
2485
  CatalogConfiguration?: CatalogConfiguration;
2486
2486
  /**
2487
- * The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state..
2487
+ * The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.
2488
2488
  */
2489
2489
  DeployAsApplicationConfiguration?: DeployAsApplicationConfiguration;
2490
2490
  /**
@@ -2498,11 +2498,11 @@ declare namespace KinesisAnalyticsV2 {
2498
2498
  */
2499
2499
  MonitoringConfigurationDescription: ZeppelinMonitoringConfigurationDescription;
2500
2500
  /**
2501
- * The AWS Glue Data Catalog that is associated with the Kinesis Data Analytics Studio notebook.
2501
+ * The Amazon Glue Data Catalog that is associated with the Kinesis Data Analytics Studio notebook.
2502
2502
  */
2503
2503
  CatalogConfigurationDescription?: CatalogConfigurationDescription;
2504
2504
  /**
2505
- * The parameters required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state..
2505
+ * The parameters required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.
2506
2506
  */
2507
2507
  DeployAsApplicationConfigurationDescription?: DeployAsApplicationConfigurationDescription;
2508
2508
  /**
@@ -2516,7 +2516,7 @@ declare namespace KinesisAnalyticsV2 {
2516
2516
  */
2517
2517
  MonitoringConfigurationUpdate?: ZeppelinMonitoringConfigurationUpdate;
2518
2518
  /**
2519
- * Updates to the configuration of the AWS Glue Data Catalog that is associated with the Kinesis Data Analytics Studio notebook.
2519
+ * Updates to the configuration of the Amazon Glue Data Catalog that is associated with the Kinesis Data Analytics Studio notebook.
2520
2520
  */
2521
2521
  CatalogConfigurationUpdate?: CatalogConfigurationUpdate;
2522
2522
  DeployAsApplicationConfigurationUpdate?: DeployAsApplicationConfigurationUpdate;
@@ -61,6 +61,14 @@ declare class MediaLive extends Service {
61
61
  * Cancel an input device transfer that you have requested.
62
62
  */
63
63
  cancelInputDeviceTransfer(callback?: (err: AWSError, data: MediaLive.Types.CancelInputDeviceTransferResponse) => void): Request<MediaLive.Types.CancelInputDeviceTransferResponse, AWSError>;
64
+ /**
65
+ * Send a request to claim an AWS Elemental device that you have purchased from a third-party vendor. After the request succeeds, you will own the device.
66
+ */
67
+ claimDevice(params: MediaLive.Types.ClaimDeviceRequest, callback?: (err: AWSError, data: MediaLive.Types.ClaimDeviceResponse) => void): Request<MediaLive.Types.ClaimDeviceResponse, AWSError>;
68
+ /**
69
+ * Send a request to claim an AWS Elemental device that you have purchased from a third-party vendor. After the request succeeds, you will own the device.
70
+ */
71
+ claimDevice(callback?: (err: AWSError, data: MediaLive.Types.ClaimDeviceResponse) => void): Request<MediaLive.Types.ClaimDeviceResponse, AWSError>;
64
72
  /**
65
73
  * Creates a new channel
66
74
  */
@@ -731,6 +739,10 @@ Leave set to "normal" when input does not contain pre-mixed audio + AD.
731
739
  Note that this field and audioType are both ignored if inputType is broadcasterMixedAd.
732
740
  */
733
741
  AudioTypeControl?: AudioDescriptionAudioTypeControl;
742
+ /**
743
+ * Settings to configure one or more solutions that insert audio watermarks in the audio encode
744
+ */
745
+ AudioWatermarkingSettings?: AudioWatermarkSettings;
734
746
  /**
735
747
  * Audio codec settings.
736
748
  */
@@ -874,6 +886,12 @@ Alternate rendition that the client will not try to play back by default. Repres
874
886
  Tracks: __listOfAudioTrack;
875
887
  }
876
888
  export type AudioType = "CLEAN_EFFECTS"|"HEARING_IMPAIRED"|"UNDEFINED"|"VISUAL_IMPAIRED_COMMENTARY"|string;
889
+ export interface AudioWatermarkSettings {
890
+ /**
891
+ * Settings to configure Nielsen Watermarks in the audio encode
892
+ */
893
+ NielsenWatermarksSettings?: NielsenWatermarksSettings;
894
+ }
877
895
  export type AuthenticationScheme = "AKAMAI"|"COMMON"|string;
878
896
  export interface AutomaticInputFailoverSettings {
879
897
  /**
@@ -1411,10 +1429,18 @@ one destination per packager.
1411
1429
  */
1412
1430
  Tags?: Tags;
1413
1431
  /**
1414
- * Settings for VPC output
1432
+ * Settings for any VPC outputs.
1415
1433
  */
1416
1434
  Vpc?: VpcOutputSettingsDescription;
1417
1435
  }
1436
+ export interface ClaimDeviceRequest {
1437
+ /**
1438
+ * The id of the device you want to claim.
1439
+ */
1440
+ Id?: __string;
1441
+ }
1442
+ export interface ClaimDeviceResponse {
1443
+ }
1418
1444
  export interface ColorSpacePassthroughSettings {
1419
1445
  }
1420
1446
  export interface CreateChannelRequest {
@@ -1463,7 +1489,7 @@ creating multiple resources.
1463
1489
  */
1464
1490
  Tags?: Tags;
1465
1491
  /**
1466
- * Settings for VPC output
1492
+ * Settings for the VPC outputs
1467
1493
  */
1468
1494
  Vpc?: VpcOutputSettings;
1469
1495
  }
@@ -2077,7 +2103,7 @@ SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelC
2077
2103
  InputPartnerIds?: __listOf__string;
2078
2104
  /**
2079
2105
  * Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
2080
- during input switch actions. Presently, this functionality only works with MP4_FILE inputs.
2106
+ during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
2081
2107
 
2082
2108
  */
2083
2109
  InputSourceType?: InputSourceType;
@@ -3666,7 +3692,7 @@ SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelC
3666
3692
  InputPartnerIds?: __listOf__string;
3667
3693
  /**
3668
3694
  * Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
3669
- during input switch actions. Presently, this functionality only works with MP4_FILE inputs.
3695
+ during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
3670
3696
 
3671
3697
  */
3672
3698
  InputSourceType?: InputSourceType;
@@ -4155,7 +4181,7 @@ pulled from.
4155
4181
  UrlPath?: __listOf__string;
4156
4182
  }
4157
4183
  export type InputTimecodeSource = "ZEROBASED"|"EMBEDDED"|string;
4158
- export type InputType = "UDP_PUSH"|"RTP_PUSH"|"RTMP_PUSH"|"RTMP_PULL"|"URL_PULL"|"MP4_FILE"|"MEDIACONNECT"|"INPUT_DEVICE"|"AWS_CDI"|string;
4184
+ export type InputType = "UDP_PUSH"|"RTP_PUSH"|"RTMP_PUSH"|"RTMP_PULL"|"URL_PULL"|"MP4_FILE"|"MEDIACONNECT"|"INPUT_DEVICE"|"AWS_CDI"|"TS_FILE"|string;
4159
4185
  export interface InputVpcRequest {
4160
4186
  /**
4161
4187
  * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces.
@@ -5212,6 +5238,20 @@ When this field is defined, ConstantBitrate must be undefined.
5212
5238
  */
5213
5239
  ServerValidation?: NetworkInputServerValidation;
5214
5240
  }
5241
+ export interface NielsenCBET {
5242
+ /**
5243
+ * Enter the CBET check digits to use in the watermark.
5244
+ */
5245
+ CbetCheckDigitString: __stringMin2Max2;
5246
+ /**
5247
+ * Determines the method of CBET insertion mode when prior encoding is detected on the same layer.
5248
+ */
5249
+ CbetStepaside: NielsenWatermarksCbetStepaside;
5250
+ /**
5251
+ * Enter the CBET Source ID (CSID) to use in the watermark
5252
+ */
5253
+ Csid: __stringMin1Max7;
5254
+ }
5215
5255
  export interface NielsenConfiguration {
5216
5256
  /**
5217
5257
  * Enter the Distributor ID assigned to your organization by Nielsen.
@@ -5222,7 +5262,35 @@ When this field is defined, ConstantBitrate must be undefined.
5222
5262
  */
5223
5263
  NielsenPcmToId3Tagging?: NielsenPcmToId3TaggingState;
5224
5264
  }
5265
+ export interface NielsenNaesIiNw {
5266
+ /**
5267
+ * Enter the check digit string for the watermark
5268
+ */
5269
+ CheckDigitString: __stringMin2Max2;
5270
+ /**
5271
+ * Enter the Nielsen Source ID (SID) to include in the watermark
5272
+ */
5273
+ Sid: __doubleMin1Max65535;
5274
+ }
5225
5275
  export type NielsenPcmToId3TaggingState = "DISABLED"|"ENABLED"|string;
5276
+ export type NielsenWatermarksCbetStepaside = "DISABLED"|"ENABLED"|string;
5277
+ export type NielsenWatermarksDistributionTypes = "FINAL_DISTRIBUTOR"|"PROGRAM_CONTENT"|string;
5278
+ export interface NielsenWatermarksSettings {
5279
+ /**
5280
+ * Complete these fields only if you want to insert watermarks of type Nielsen CBET
5281
+ */
5282
+ NielsenCbetSettings?: NielsenCBET;
5283
+ /**
5284
+ * Choose the distribution types that you want to assign to the watermarks:
5285
+ - PROGRAM_CONTENT
5286
+ - FINAL_DISTRIBUTOR
5287
+ */
5288
+ NielsenDistributionType?: NielsenWatermarksDistributionTypes;
5289
+ /**
5290
+ * Complete these fields only if you want to insert watermarks of type Nielsen NAES II (N2) and Nielsen NAES VI (NW).
5291
+ */
5292
+ NielsenNaesIiNwSettings?: NielsenNaesIiNw;
5293
+ }
5226
5294
  export interface Offering {
5227
5295
  /**
5228
5296
  * Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
@@ -6729,6 +6797,7 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
6729
6797
  export type __doubleMin0Max1 = number;
6730
6798
  export type __doubleMin0Max100 = number;
6731
6799
  export type __doubleMin1 = number;
6800
+ export type __doubleMin1Max65535 = number;
6732
6801
  export type __doubleMinNegative59Max0 = number;
6733
6802
  export type __integer = number;
6734
6803
  export type __integerMin0 = number;
@@ -6842,6 +6911,8 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
6842
6911
  export type __stringMin1Max255 = string;
6843
6912
  export type __stringMin1Max256 = string;
6844
6913
  export type __stringMin1Max35 = string;
6914
+ export type __stringMin1Max7 = string;
6915
+ export type __stringMin2Max2 = string;
6845
6916
  export type __stringMin32Max32 = string;
6846
6917
  export type __stringMin34Max34 = string;
6847
6918
  export type __stringMin3Max3 = string;