aws-sdk 2.1687.0 → 2.1689.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/README.md +1 -1
  2. package/apis/bedrock-agent-2023-06-05.min.json +28 -6
  3. package/apis/connect-2017-08-08.min.json +268 -250
  4. package/apis/datazone-2018-05-10.min.json +677 -635
  5. package/apis/elasticloadbalancingv2-2015-12-01.examples.json +18 -0
  6. package/apis/elasticloadbalancingv2-2015-12-01.min.json +65 -11
  7. package/apis/finspace-2021-03-12.min.json +7 -1
  8. package/apis/fis-2020-12-01.min.json +80 -0
  9. package/apis/logs-2014-03-28.min.json +191 -64
  10. package/apis/logs-2014-03-28.paginators.json +6 -0
  11. package/apis/mediaconnect-2018-11-14.min.json +116 -42
  12. package/apis/medialive-2017-10-14.min.json +349 -341
  13. package/apis/s3control-2018-08-20.min.json +92 -4
  14. package/apis/s3control-2018-08-20.paginators.json +6 -0
  15. package/apis/sagemaker-2017-07-24.min.json +814 -813
  16. package/apis/timestream-influxdb-2023-01-27.min.json +3 -1
  17. package/clients/appsync.d.ts +2 -2
  18. package/clients/bedrockagent.d.ts +19 -2
  19. package/clients/cloudwatchlogs.d.ts +184 -5
  20. package/clients/connect.d.ts +38 -2
  21. package/clients/datazone.d.ts +42 -0
  22. package/clients/elbv2.d.ts +59 -2
  23. package/clients/finspace.d.ts +3 -3
  24. package/clients/fis.d.ts +83 -1
  25. package/clients/mediaconnect.d.ts +49 -0
  26. package/clients/medialive.d.ts +11 -0
  27. package/clients/s3control.d.ts +110 -31
  28. package/clients/sagemaker.d.ts +7 -2
  29. package/clients/timestreaminfluxdb.d.ts +9 -1
  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 +533 -328
  33. package/dist/aws-sdk.min.js +85 -85
  34. package/lib/core.js +1 -1
  35. package/package.json +1 -1
@@ -1192,6 +1192,10 @@ declare namespace DataZone {
1192
1192
  }
1193
1193
  export type AcceptRuleBehavior = "ALL"|"NONE"|string;
1194
1194
  export interface AcceptSubscriptionRequestInput {
1195
+ /**
1196
+ * The asset scopes of the accept subscription request.
1197
+ */
1198
+ assetScopes?: AcceptedAssetScopes;
1195
1199
  /**
1196
1200
  * A description that specifies the reason for accepting the specified subscription request.
1197
1201
  */
@@ -1257,6 +1261,17 @@ declare namespace DataZone {
1257
1261
  }
1258
1262
  export type AcceptSubscriptionRequestOutputSubscribedListingsList = SubscribedListing[];
1259
1263
  export type AcceptSubscriptionRequestOutputSubscribedPrincipalsList = SubscribedPrincipal[];
1264
+ export interface AcceptedAssetScope {
1265
+ /**
1266
+ * The asset ID of the accepted asset scope.
1267
+ */
1268
+ assetId: AssetId;
1269
+ /**
1270
+ * The filter IDs of the accepted asset scope.
1271
+ */
1272
+ filterIds: FilterIds;
1273
+ }
1274
+ export type AcceptedAssetScopes = AcceptedAssetScope[];
1260
1275
  export type ActionLink = string;
1261
1276
  export interface ActionParameters {
1262
1277
  /**
@@ -1605,6 +1620,24 @@ declare namespace DataZone {
1605
1620
  revision?: Revision;
1606
1621
  }
1607
1622
  export type AssetRevisions = AssetRevision[];
1623
+ export interface AssetScope {
1624
+ /**
1625
+ * The asset ID of the asset scope.
1626
+ */
1627
+ assetId: AssetId;
1628
+ /**
1629
+ * The error message of the asset scope.
1630
+ */
1631
+ errorMessage?: String;
1632
+ /**
1633
+ * The filter IDs of the asset scope.
1634
+ */
1635
+ filterIds: FilterIds;
1636
+ /**
1637
+ * The status of the asset scope.
1638
+ */
1639
+ status: String;
1640
+ }
1608
1641
  export interface AssetTargetNameMap {
1609
1642
  /**
1610
1643
  * The identifier of the inventory asset.
@@ -4846,6 +4879,7 @@ declare namespace DataZone {
4846
4879
  export type FilterExpressionType = "INCLUDE"|"EXCLUDE"|string;
4847
4880
  export type FilterExpressions = FilterExpression[];
4848
4881
  export type FilterId = string;
4882
+ export type FilterIds = FilterId[];
4849
4883
  export type FilterList = FilterClause[];
4850
4884
  export type FilterName = string;
4851
4885
  export type FilterStatus = "VALID"|"INVALID"|string;
@@ -9545,6 +9579,10 @@ declare namespace DataZone {
9545
9579
  * The revision of the asset for which the subscription grant is created.
9546
9580
  */
9547
9581
  assetRevision: Revision;
9582
+ /**
9583
+ * The asset scope of the subscribed asset.
9584
+ */
9585
+ assetScope?: AssetScope;
9548
9586
  /**
9549
9587
  * The failure cause included in the details of the asset for which the subscription grant is created.
9550
9588
  */
@@ -9567,6 +9605,10 @@ declare namespace DataZone {
9567
9605
  targetName?: String;
9568
9606
  }
9569
9607
  export interface SubscribedAssetListing {
9608
+ /**
9609
+ * The asset scope of the subscribed asset listing.
9610
+ */
9611
+ assetScope?: AssetScope;
9570
9612
  /**
9571
9613
  * The identifier of the published asset for which the subscription grant is created.
9572
9614
  */
@@ -140,6 +140,14 @@ declare class ELBv2 extends Service {
140
140
  * Describes the current Elastic Load Balancing resource limits for your Amazon Web Services account. For more information, see the following: Quotas for your Application Load Balancers Quotas for your Network Load Balancers Quotas for your Gateway Load Balancers
141
141
  */
142
142
  describeAccountLimits(callback?: (err: AWSError, data: ELBv2.Types.DescribeAccountLimitsOutput) => void): Request<ELBv2.Types.DescribeAccountLimitsOutput, AWSError>;
143
+ /**
144
+ * Describes the attributes for the specified listener.
145
+ */
146
+ describeListenerAttributes(params: ELBv2.Types.DescribeListenerAttributesInput, callback?: (err: AWSError, data: ELBv2.Types.DescribeListenerAttributesOutput) => void): Request<ELBv2.Types.DescribeListenerAttributesOutput, AWSError>;
147
+ /**
148
+ * Describes the attributes for the specified listener.
149
+ */
150
+ describeListenerAttributes(callback?: (err: AWSError, data: ELBv2.Types.DescribeListenerAttributesOutput) => void): Request<ELBv2.Types.DescribeListenerAttributesOutput, AWSError>;
143
151
  /**
144
152
  * Describes the default certificate and the certificate list for the specified HTTPS or TLS listener. If the default certificate is also in the certificate list, it appears twice in the results (once with IsDefault set to true and once with IsDefault set to false). For more information, see SSL certificates in the Application Load Balancers Guide or Server certificates in the Network Load Balancers Guide.
145
153
  */
@@ -276,6 +284,14 @@ declare class ELBv2 extends Service {
276
284
  * Replaces the specified properties of the specified listener. Any properties that you do not specify remain unchanged. Changing the protocol from HTTPS to HTTP, or from TLS to TCP, removes the security policy and default certificate properties. If you change the protocol from HTTP to HTTPS, or from TCP to TLS, you must add the security policy and default certificate properties. To add an item to a list, remove an item from a list, or update an item in a list, you must provide the entire list. For example, to add an action, specify a list with the current actions plus the new action.
277
285
  */
278
286
  modifyListener(callback?: (err: AWSError, data: ELBv2.Types.ModifyListenerOutput) => void): Request<ELBv2.Types.ModifyListenerOutput, AWSError>;
287
+ /**
288
+ * Modifies the specified attributes of the specified listener.
289
+ */
290
+ modifyListenerAttributes(params: ELBv2.Types.ModifyListenerAttributesInput, callback?: (err: AWSError, data: ELBv2.Types.ModifyListenerAttributesOutput) => void): Request<ELBv2.Types.ModifyListenerAttributesOutput, AWSError>;
291
+ /**
292
+ * Modifies the specified attributes of the specified listener.
293
+ */
294
+ modifyListenerAttributes(callback?: (err: AWSError, data: ELBv2.Types.ModifyListenerAttributesOutput) => void): Request<ELBv2.Types.ModifyListenerAttributesOutput, AWSError>;
279
295
  /**
280
296
  * Modifies the specified attributes of the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer. If any of the specified attributes can't be modified as requested, the call fails. Any existing attributes that you do not modify retain their current values.
281
297
  */
@@ -979,6 +995,18 @@ declare namespace ELBv2 {
979
995
  */
980
996
  NextMarker?: Marker;
981
997
  }
998
+ export interface DescribeListenerAttributesInput {
999
+ /**
1000
+ * The Amazon Resource Name (ARN) of the listener.
1001
+ */
1002
+ ListenerArn: ListenerArn;
1003
+ }
1004
+ export interface DescribeListenerAttributesOutput {
1005
+ /**
1006
+ * Information about the listener attributes.
1007
+ */
1008
+ Attributes?: ListenerAttributes;
1009
+ }
982
1010
  export interface DescribeListenerCertificatesInput {
983
1011
  /**
984
1012
  * The Amazon Resource Names (ARN) of the listener.
@@ -1461,6 +1489,19 @@ declare namespace ELBv2 {
1461
1489
  }
1462
1490
  export type ListenerArn = string;
1463
1491
  export type ListenerArns = ListenerArn[];
1492
+ export interface ListenerAttribute {
1493
+ /**
1494
+ * The name of the attribute. The following attribute is supported by Network Load Balancers, and Gateway Load Balancers. tcp.idle_timeout.seconds - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
1495
+ */
1496
+ Key?: ListenerAttributeKey;
1497
+ /**
1498
+ * The value of the attribute.
1499
+ */
1500
+ Value?: ListenerAttributeValue;
1501
+ }
1502
+ export type ListenerAttributeKey = string;
1503
+ export type ListenerAttributeValue = string;
1504
+ export type ListenerAttributes = ListenerAttribute[];
1464
1505
  export type Listeners = Listener[];
1465
1506
  export interface LoadBalancer {
1466
1507
  /**
@@ -1585,6 +1626,22 @@ declare namespace ELBv2 {
1585
1626
  export type Max = string;
1586
1627
  export type MitigationInEffectEnum = "yes"|"no"|string;
1587
1628
  export type Mode = string;
1629
+ export interface ModifyListenerAttributesInput {
1630
+ /**
1631
+ * The Amazon Resource Name (ARN) of the listener.
1632
+ */
1633
+ ListenerArn: ListenerArn;
1634
+ /**
1635
+ * The listener attributes.
1636
+ */
1637
+ Attributes: ListenerAttributes;
1638
+ }
1639
+ export interface ModifyListenerAttributesOutput {
1640
+ /**
1641
+ * Information about the listener attributes.
1642
+ */
1643
+ Attributes?: ListenerAttributes;
1644
+ }
1588
1645
  export interface ModifyListenerInput {
1589
1646
  /**
1590
1647
  * The Amazon Resource Name (ARN) of the listener.
@@ -1667,13 +1724,13 @@ declare namespace ELBv2 {
1667
1724
  */
1668
1725
  TargetGroupArn: TargetGroupArn;
1669
1726
  /**
1670
- * The attributes.
1727
+ * The target group attributes.
1671
1728
  */
1672
1729
  Attributes: TargetGroupAttributes;
1673
1730
  }
1674
1731
  export interface ModifyTargetGroupAttributesOutput {
1675
1732
  /**
1676
- * Information about the attributes.
1733
+ * Information about the target group attributes.
1677
1734
  */
1678
1735
  Attributes?: TargetGroupAttributes;
1679
1736
  }
@@ -992,7 +992,7 @@ declare namespace Finspace {
992
992
  */
993
993
  scalingGroupName: KxScalingGroupName;
994
994
  /**
995
- * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed. You can add one of the following values: kx.sg.4xlarge – The host type with a configuration of 108 GiB memory and 16 vCPUs. kx.sg.8xlarge – The host type with a configuration of 216 GiB memory and 32 vCPUs. kx.sg.16xlarge – The host type with a configuration of 432 GiB memory and 64 vCPUs. kx.sg.32xlarge – The host type with a configuration of 864 GiB memory and 128 vCPUs. kx.sg1.16xlarge – The host type with a configuration of 1949 GiB memory and 64 vCPUs. kx.sg1.24xlarge – The host type with a configuration of 2948 GiB memory and 96 vCPUs.
995
+ * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed. You can add one of the following values: kx.sg.large – The host type with a configuration of 16 GiB memory and 2 vCPUs. kx.sg.xlarge – The host type with a configuration of 32 GiB memory and 4 vCPUs. kx.sg.2xlarge – The host type with a configuration of 64 GiB memory and 8 vCPUs. kx.sg.4xlarge – The host type with a configuration of 108 GiB memory and 16 vCPUs. kx.sg.8xlarge – The host type with a configuration of 216 GiB memory and 32 vCPUs. kx.sg.16xlarge – The host type with a configuration of 432 GiB memory and 64 vCPUs. kx.sg.32xlarge – The host type with a configuration of 864 GiB memory and 128 vCPUs. kx.sg1.16xlarge – The host type with a configuration of 1949 GiB memory and 64 vCPUs. kx.sg1.24xlarge – The host type with a configuration of 2948 GiB memory and 96 vCPUs.
996
996
  */
997
997
  hostType: KxHostType;
998
998
  /**
@@ -1816,7 +1816,7 @@ declare namespace Finspace {
1816
1816
  */
1817
1817
  scalingGroupArn?: arn;
1818
1818
  /**
1819
- * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed. It can have one of the following values: kx.sg.4xlarge – The host type with a configuration of 108 GiB memory and 16 vCPUs. kx.sg.8xlarge – The host type with a configuration of 216 GiB memory and 32 vCPUs. kx.sg.16xlarge – The host type with a configuration of 432 GiB memory and 64 vCPUs. kx.sg.32xlarge – The host type with a configuration of 864 GiB memory and 128 vCPUs. kx.sg1.16xlarge – The host type with a configuration of 1949 GiB memory and 64 vCPUs. kx.sg1.24xlarge – The host type with a configuration of 2948 GiB memory and 96 vCPUs.
1819
+ * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed. It can have one of the following values: kx.sg.large – The host type with a configuration of 16 GiB memory and 2 vCPUs. kx.sg.xlarge – The host type with a configuration of 32 GiB memory and 4 vCPUs. kx.sg.2xlarge – The host type with a configuration of 64 GiB memory and 8 vCPUs. kx.sg.4xlarge – The host type with a configuration of 108 GiB memory and 16 vCPUs. kx.sg.8xlarge – The host type with a configuration of 216 GiB memory and 32 vCPUs. kx.sg.16xlarge – The host type with a configuration of 432 GiB memory and 64 vCPUs. kx.sg.32xlarge – The host type with a configuration of 864 GiB memory and 128 vCPUs. kx.sg1.16xlarge – The host type with a configuration of 1949 GiB memory and 64 vCPUs. kx.sg1.24xlarge – The host type with a configuration of 2948 GiB memory and 96 vCPUs.
1820
1820
  */
1821
1821
  hostType?: KxHostType;
1822
1822
  /**
@@ -2396,7 +2396,7 @@ declare namespace Finspace {
2396
2396
  */
2397
2397
  scalingGroupName?: KxScalingGroupName;
2398
2398
  /**
2399
- * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed. You can add one of the following values: kx.sg.4xlarge – The host type with a configuration of 108 GiB memory and 16 vCPUs. kx.sg.8xlarge – The host type with a configuration of 216 GiB memory and 32 vCPUs. kx.sg.16xlarge – The host type with a configuration of 432 GiB memory and 64 vCPUs. kx.sg.32xlarge – The host type with a configuration of 864 GiB memory and 128 vCPUs. kx.sg1.16xlarge – The host type with a configuration of 1949 GiB memory and 64 vCPUs. kx.sg1.24xlarge – The host type with a configuration of 2948 GiB memory and 96 vCPUs.
2399
+ * The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed. You can add one of the following values: kx.sg.large – The host type with a configuration of 16 GiB memory and 2 vCPUs. kx.sg.xlarge – The host type with a configuration of 32 GiB memory and 4 vCPUs. kx.sg.2xlarge – The host type with a configuration of 64 GiB memory and 8 vCPUs. kx.sg.4xlarge – The host type with a configuration of 108 GiB memory and 16 vCPUs. kx.sg.8xlarge – The host type with a configuration of 216 GiB memory and 32 vCPUs. kx.sg.16xlarge – The host type with a configuration of 432 GiB memory and 64 vCPUs. kx.sg.32xlarge – The host type with a configuration of 864 GiB memory and 128 vCPUs. kx.sg1.16xlarge – The host type with a configuration of 1949 GiB memory and 64 vCPUs. kx.sg1.24xlarge – The host type with a configuration of 2948 GiB memory and 96 vCPUs.
2400
2400
  */
2401
2401
  hostType?: KxHostType;
2402
2402
  /**
package/clients/fis.d.ts CHANGED
@@ -75,6 +75,14 @@ declare class Fis extends Service {
75
75
  * Gets information about the specified experiment template.
76
76
  */
77
77
  getExperimentTemplate(callback?: (err: AWSError, data: Fis.Types.GetExperimentTemplateResponse) => void): Request<Fis.Types.GetExperimentTemplateResponse, AWSError>;
78
+ /**
79
+ * Gets information about the specified safety lever.
80
+ */
81
+ getSafetyLever(params: Fis.Types.GetSafetyLeverRequest, callback?: (err: AWSError, data: Fis.Types.GetSafetyLeverResponse) => void): Request<Fis.Types.GetSafetyLeverResponse, AWSError>;
82
+ /**
83
+ * Gets information about the specified safety lever.
84
+ */
85
+ getSafetyLever(callback?: (err: AWSError, data: Fis.Types.GetSafetyLeverResponse) => void): Request<Fis.Types.GetSafetyLeverResponse, AWSError>;
78
86
  /**
79
87
  * Gets information about the specified target account configuration of the experiment template.
80
88
  */
@@ -195,6 +203,14 @@ declare class Fis extends Service {
195
203
  * Updates the specified experiment template.
196
204
  */
197
205
  updateExperimentTemplate(callback?: (err: AWSError, data: Fis.Types.UpdateExperimentTemplateResponse) => void): Request<Fis.Types.UpdateExperimentTemplateResponse, AWSError>;
206
+ /**
207
+ * Updates the specified safety lever state.
208
+ */
209
+ updateSafetyLeverState(params: Fis.Types.UpdateSafetyLeverStateRequest, callback?: (err: AWSError, data: Fis.Types.UpdateSafetyLeverStateResponse) => void): Request<Fis.Types.UpdateSafetyLeverStateResponse, AWSError>;
210
+ /**
211
+ * Updates the specified safety lever state.
212
+ */
213
+ updateSafetyLeverState(callback?: (err: AWSError, data: Fis.Types.UpdateSafetyLeverStateResponse) => void): Request<Fis.Types.UpdateSafetyLeverStateResponse, AWSError>;
198
214
  /**
199
215
  * Updates the target account configuration for the specified experiment template.
200
216
  */
@@ -667,7 +683,7 @@ declare namespace Fis {
667
683
  */
668
684
  error?: ExperimentError;
669
685
  }
670
- export type ExperimentStatus = "pending"|"initiating"|"running"|"completed"|"stopping"|"stopped"|"failed"|string;
686
+ export type ExperimentStatus = "pending"|"initiating"|"running"|"completed"|"stopping"|"stopped"|"failed"|"cancelled"|string;
671
687
  export type ExperimentStatusReason = string;
672
688
  export interface ExperimentStopCondition {
673
689
  /**
@@ -1077,6 +1093,18 @@ declare namespace Fis {
1077
1093
  */
1078
1094
  experimentTemplate?: ExperimentTemplate;
1079
1095
  }
1096
+ export interface GetSafetyLeverRequest {
1097
+ /**
1098
+ * The ID of the safety lever.
1099
+ */
1100
+ id: SafetyLeverId;
1101
+ }
1102
+ export interface GetSafetyLeverResponse {
1103
+ /**
1104
+ * Information about the safety lever.
1105
+ */
1106
+ safetyLever?: SafetyLever;
1107
+ }
1080
1108
  export interface GetTargetAccountConfigurationRequest {
1081
1109
  /**
1082
1110
  * The ID of the experiment template.
@@ -1302,6 +1330,34 @@ declare namespace Fis {
1302
1330
  export type RoleArn = string;
1303
1331
  export type S3BucketName = string;
1304
1332
  export type S3ObjectKey = string;
1333
+ export interface SafetyLever {
1334
+ /**
1335
+ * The ID of the safety lever.
1336
+ */
1337
+ id?: SafetyLeverId;
1338
+ /**
1339
+ * The Amazon Resource Name (ARN) of the safety lever.
1340
+ */
1341
+ arn?: ResourceArn;
1342
+ /**
1343
+ * The state of the safety lever.
1344
+ */
1345
+ state?: SafetyLeverState;
1346
+ }
1347
+ export type SafetyLeverId = string;
1348
+ export interface SafetyLeverState {
1349
+ /**
1350
+ * The state of the safety lever.
1351
+ */
1352
+ status?: SafetyLeverStatus;
1353
+ /**
1354
+ * The reason for the state of the safety lever.
1355
+ */
1356
+ reason?: SafetyLeverStatusReason;
1357
+ }
1358
+ export type SafetyLeverStatus = "disengaged"|"engaged"|"engaging"|string;
1359
+ export type SafetyLeverStatusInput = "disengaged"|"engaged"|string;
1360
+ export type SafetyLeverStatusReason = string;
1305
1361
  export interface StartExperimentExperimentOptionsInput {
1306
1362
  /**
1307
1363
  * Specifies the actions mode for experiment options.
@@ -1572,6 +1628,32 @@ declare namespace Fis {
1572
1628
  parameters?: ExperimentTemplateTargetParameterMap;
1573
1629
  }
1574
1630
  export type UpdateExperimentTemplateTargetInputMap = {[key: string]: UpdateExperimentTemplateTargetInput};
1631
+ export interface UpdateSafetyLeverStateInput {
1632
+ /**
1633
+ * The updated state of the safety lever.
1634
+ */
1635
+ status: SafetyLeverStatusInput;
1636
+ /**
1637
+ * The reason for updating the state of the safety lever.
1638
+ */
1639
+ reason: SafetyLeverStatusReason;
1640
+ }
1641
+ export interface UpdateSafetyLeverStateRequest {
1642
+ /**
1643
+ * The ID of the safety lever.
1644
+ */
1645
+ id: SafetyLeverId;
1646
+ /**
1647
+ * The state of the safety lever.
1648
+ */
1649
+ state: UpdateSafetyLeverStateInput;
1650
+ }
1651
+ export interface UpdateSafetyLeverStateResponse {
1652
+ /**
1653
+ * Information about the safety lever.
1654
+ */
1655
+ safetyLever?: SafetyLever;
1656
+ }
1575
1657
  export interface UpdateTargetAccountConfigurationRequest {
1576
1658
  /**
1577
1659
  * The ID of the experiment template.
@@ -140,6 +140,14 @@ declare class MediaConnect extends Service {
140
140
  * Displays details of the flow's source stream. The response contains information about the contents of the stream and its programs.
141
141
  */
142
142
  describeFlowSourceMetadata(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceMetadataResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceMetadataResponse, AWSError>;
143
+ /**
144
+ * Displays the thumbnail details of a flow's source stream.
145
+ */
146
+ describeFlowSourceThumbnail(params: MediaConnect.Types.DescribeFlowSourceThumbnailRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceThumbnailResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceThumbnailResponse, AWSError>;
147
+ /**
148
+ * Displays the thumbnail details of a flow's source stream.
149
+ */
150
+ describeFlowSourceThumbnail(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceThumbnailResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceThumbnailResponse, AWSError>;
143
151
  /**
144
152
  * Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
145
153
  */
@@ -939,6 +947,7 @@ declare namespace MediaConnect {
939
947
  */
940
948
  VpcInterfaces?: __listOfVpcInterfaceRequest;
941
949
  Maintenance?: AddMaintenance;
950
+ SourceMonitoringConfig?: MonitoringConfig;
942
951
  }
943
952
  export interface CreateFlowResponse {
944
953
  Flow?: Flow;
@@ -1060,6 +1069,15 @@ declare namespace MediaConnect {
1060
1069
  Timestamp?: __timestampIso8601;
1061
1070
  TransportMediaInfo?: TransportMediaInfo;
1062
1071
  }
1072
+ export interface DescribeFlowSourceThumbnailRequest {
1073
+ /**
1074
+ * The Amazon Resource Name (ARN) of the flow.
1075
+ */
1076
+ FlowArn: __string;
1077
+ }
1078
+ export interface DescribeFlowSourceThumbnailResponse {
1079
+ ThumbnailDetails?: ThumbnailDetails;
1080
+ }
1063
1081
  export interface DescribeGatewayInstanceRequest {
1064
1082
  /**
1065
1083
  * The Amazon Resource Name (ARN) of the gateway instance that you want to describe.
@@ -1292,6 +1310,7 @@ declare namespace MediaConnect {
1292
1310
  */
1293
1311
  VpcInterfaces?: __listOfVpcInterface;
1294
1312
  Maintenance?: Maintenance;
1313
+ SourceMonitoringConfig?: MonitoringConfig;
1295
1314
  }
1296
1315
  export interface Fmtp {
1297
1316
  /**
@@ -1944,6 +1963,12 @@ declare namespace MediaConnect {
1944
1963
  */
1945
1964
  Errors: __listOf__string;
1946
1965
  }
1966
+ export interface MonitoringConfig {
1967
+ /**
1968
+ * The state of thumbnail monitoring.
1969
+ */
1970
+ ThumbnailState?: ThumbnailState;
1971
+ }
1947
1972
  export type NetworkInterfaceType = "ena"|"efa"|string;
1948
1973
  export interface Offering {
1949
1974
  /**
@@ -2467,6 +2492,29 @@ declare namespace MediaConnect {
2467
2492
  Tags: __mapOf__string;
2468
2493
  }
2469
2494
  export type Tcs = "SDR"|"PQ"|"HLG"|"LINEAR"|"BT2100LINPQ"|"BT2100LINHLG"|"ST2065-1"|"ST428-1"|"DENSITY"|string;
2495
+ export interface ThumbnailDetails {
2496
+ /**
2497
+ * The ARN of the flow that DescribeFlowSourceThumbnail was performed on.
2498
+ */
2499
+ FlowArn: __string;
2500
+ /**
2501
+ * Thumbnail Base64 string.
2502
+ */
2503
+ Thumbnail?: __string;
2504
+ /**
2505
+ * Status code and messages about the flow source thumbnail.
2506
+ */
2507
+ ThumbnailMessages: __listOfMessageDetail;
2508
+ /**
2509
+ * Timecode of thumbnail.
2510
+ */
2511
+ Timecode?: __string;
2512
+ /**
2513
+ * The timestamp of when thumbnail was generated.
2514
+ */
2515
+ Timestamp?: __timestampIso8601;
2516
+ }
2517
+ export type ThumbnailState = "ENABLED"|"DISABLED"|string;
2470
2518
  export interface Transport {
2471
2519
  /**
2472
2520
  * The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
@@ -2935,6 +2983,7 @@ declare namespace MediaConnect {
2935
2983
  FlowArn: __string;
2936
2984
  SourceFailoverConfig?: UpdateFailoverConfig;
2937
2985
  Maintenance?: UpdateMaintenance;
2986
+ SourceMonitoringConfig?: MonitoringConfig;
2938
2987
  }
2939
2988
  export interface UpdateFlowResponse {
2940
2989
  Flow?: Flow;
@@ -3635,6 +3635,11 @@ This field is optional; when no value is specified the encoder will choose the n
3635
3635
  * Timecode burn-in settings
3636
3636
  */
3637
3637
  TimecodeBurninSettings?: TimecodeBurninSettings;
3638
+ /**
3639
+ * Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
3640
+ apply an appropriate value.
3641
+ */
3642
+ MinQp?: __integerMin1Max51;
3638
3643
  }
3639
3644
  export type H264SpatialAq = "DISABLED"|"ENABLED"|string;
3640
3645
  export type H264SubGopLength = "DYNAMIC"|"FIXED"|string;
@@ -3839,6 +3844,11 @@ In all other configurations, you typically enter "none".
3839
3844
  * Select the tree block size used for encoding. If you enter "auto", the encoder will pick the best size. If you are setting up the picture as a tile, you must set this to 32x32. In all other configurations, you typically enter "auto".
3840
3845
  */
3841
3846
  TreeblockSize?: H265TreeblockSize;
3847
+ /**
3848
+ * Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
3849
+ apply an appropriate value.
3850
+ */
3851
+ MinQp?: __integerMin1Max51;
3842
3852
  }
3843
3853
  export type H265Tier = "HIGH"|"MAIN"|string;
3844
3854
  export type H265TimecodeInsertionBehavior = "DISABLED"|"PIC_TIMING_SEI"|string;
@@ -9321,6 +9331,7 @@ one destination per packager.
9321
9331
  export type __listOfSrtCallerSource = SrtCallerSource[];
9322
9332
  export type __listOfSrtCallerSourceRequest = SrtCallerSourceRequest[];
9323
9333
  export type MultiplexPacketIdentifiersMapping = {[key: string]: MultiplexProgramPacketIdentifiersMap};
9334
+ export type __integerMin1Max51 = number;
9324
9335
  /**
9325
9336
  * 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.
9326
9337
  */