@aws-sdk/client-medialive 3.781.0 → 3.784.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.
- package/README.md +40 -0
- package/dist-cjs/index.js +332 -14
- package/dist-es/MediaLive.js +10 -0
- package/dist-es/commands/CreateSdiSourceCommand.js +22 -0
- package/dist-es/commands/DeleteSdiSourceCommand.js +22 -0
- package/dist-es/commands/DescribeSdiSourceCommand.js +22 -0
- package/dist-es/commands/ListSdiSourcesCommand.js +22 -0
- package/dist-es/commands/UpdateSdiSourceCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +1 -4
- package/dist-es/models/models_1.js +17 -8
- package/dist-es/models/models_2.js +8 -0
- package/dist-es/pagination/ListSdiSourcesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +204 -0
- package/dist-types/MediaLive.d.ts +37 -0
- package/dist-types/MediaLiveClient.d.ts +7 -2
- package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/commands/CreateInputCommand.d.ts +8 -2
- package/dist-types/commands/CreateNodeCommand.d.ts +7 -0
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +4 -1
- package/dist-types/commands/CreateSdiSourceCommand.d.ts +109 -0
- package/dist-types/commands/DeleteNodeCommand.d.ts +7 -0
- package/dist-types/commands/DeleteSdiSourceCommand.d.ts +106 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +4 -1
- package/dist-types/commands/DescribeNodeCommand.d.ts +7 -0
- package/dist-types/commands/DescribeSdiSourceCommand.d.ts +103 -0
- package/dist-types/commands/ListInputsCommand.d.ts +4 -1
- package/dist-types/commands/ListNodesCommand.d.ts +7 -0
- package/dist-types/commands/ListSdiSourcesCommand.d.ts +104 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +7 -1
- package/dist-types/commands/UpdateNodeCommand.d.ts +14 -0
- package/dist-types/commands/UpdateNodeStateCommand.d.ts +7 -0
- package/dist-types/commands/UpdateSdiSourceCommand.d.ts +106 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +32 -12
- package/dist-types/models/models_1.d.ts +91 -53
- package/dist-types/models/models_2.d.ts +316 -2
- package/dist-types/pagination/ListSdiSourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/MediaLive.d.ts +87 -0
- package/dist-types/ts3.4/MediaLiveClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CancelInputDeviceTransferCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSdiSourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteSdiSourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeSdiSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSdiSourcesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateSdiSourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -6
- package/dist-types/ts3.4/models/models_1.d.ts +32 -21
- package/dist-types/ts3.4/models/models_2.d.ts +87 -3
- package/dist-types/ts3.4/pagination/ListSdiSourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +5 -5
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
|
|
3
|
-
import { Algorithm, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionLanguageMapping, ChannelEngineVersionResponse,
|
|
3
|
+
import { Algorithm, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionLanguageMapping, ChannelEngineVersionResponse, DvbNitSettings, DvbSdtSettings, DvbTdtSettings, Hdr10Settings, HlsAdMarkers, InputLocation, M2tsAbsentInputAudioBehavior, M2tsArib, M2tsAribCaptionsPidControl, M2tsAudioBufferModel, M2tsAudioInterval, M2tsAudioStreamType, M2tsBufferModel, M2tsCcDescriptor, M2tsEbifControl, M2tsEbpPlacement, M2tsEsRateInPes, M2tsKlv, M2tsNielsenId3Behavior, M2tsPcrControl, M2tsRateMode, M2tsScte35Control, M2tsSegmentationMarkers, M2tsSegmentationStyle, OfferingDurationUnits, OfferingType, ReservationResourceSpecification } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* @enum
|
|
7
|
+
*/
|
|
8
|
+
export declare const M2tsTimedMetadataBehavior: {
|
|
9
|
+
readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
|
|
10
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type M2tsTimedMetadataBehavior = (typeof M2tsTimedMetadataBehavior)[keyof typeof M2tsTimedMetadataBehavior];
|
|
4
16
|
/**
|
|
5
17
|
* M2ts Settings
|
|
6
18
|
* @public
|
|
@@ -3564,6 +3576,84 @@ export interface ScheduleAction {
|
|
|
3564
3576
|
*/
|
|
3565
3577
|
ScheduleActionStartSettings: ScheduleActionStartSettings | undefined;
|
|
3566
3578
|
}
|
|
3579
|
+
/**
|
|
3580
|
+
* @public
|
|
3581
|
+
* @enum
|
|
3582
|
+
*/
|
|
3583
|
+
export declare const SdiSourceMode: {
|
|
3584
|
+
readonly INTERLEAVE: "INTERLEAVE";
|
|
3585
|
+
readonly QUADRANT: "QUADRANT";
|
|
3586
|
+
};
|
|
3587
|
+
/**
|
|
3588
|
+
* @public
|
|
3589
|
+
*/
|
|
3590
|
+
export type SdiSourceMode = (typeof SdiSourceMode)[keyof typeof SdiSourceMode];
|
|
3591
|
+
/**
|
|
3592
|
+
* @public
|
|
3593
|
+
* @enum
|
|
3594
|
+
*/
|
|
3595
|
+
export declare const SdiSourceState: {
|
|
3596
|
+
readonly DELETED: "DELETED";
|
|
3597
|
+
readonly IDLE: "IDLE";
|
|
3598
|
+
readonly IN_USE: "IN_USE";
|
|
3599
|
+
};
|
|
3600
|
+
/**
|
|
3601
|
+
* @public
|
|
3602
|
+
*/
|
|
3603
|
+
export type SdiSourceState = (typeof SdiSourceState)[keyof typeof SdiSourceState];
|
|
3604
|
+
/**
|
|
3605
|
+
* @public
|
|
3606
|
+
* @enum
|
|
3607
|
+
*/
|
|
3608
|
+
export declare const SdiSourceType: {
|
|
3609
|
+
readonly QUAD: "QUAD";
|
|
3610
|
+
readonly SINGLE: "SINGLE";
|
|
3611
|
+
};
|
|
3612
|
+
/**
|
|
3613
|
+
* @public
|
|
3614
|
+
*/
|
|
3615
|
+
export type SdiSourceType = (typeof SdiSourceType)[keyof typeof SdiSourceType];
|
|
3616
|
+
/**
|
|
3617
|
+
* Used in CreateSdiSourceResponse, DeleteSdiSourceResponse, DescribeSdiSourceResponse, ListSdiSourcesResponse, UpdateSdiSourceResponse
|
|
3618
|
+
* @public
|
|
3619
|
+
*/
|
|
3620
|
+
export interface SdiSourceSummary {
|
|
3621
|
+
/**
|
|
3622
|
+
* The ARN of this SdiSource. It is automatically assigned when the SdiSource is created.
|
|
3623
|
+
* @public
|
|
3624
|
+
*/
|
|
3625
|
+
Arn?: string | undefined;
|
|
3626
|
+
/**
|
|
3627
|
+
* The ID of the SdiSource. Unique in the AWS account.The ID is the resource-id portion of the ARN.
|
|
3628
|
+
* @public
|
|
3629
|
+
*/
|
|
3630
|
+
Id?: string | undefined;
|
|
3631
|
+
/**
|
|
3632
|
+
* The list of inputs that are currently using this SDI source. This list will be empty if the SdiSource has just been deleted.
|
|
3633
|
+
* @public
|
|
3634
|
+
*/
|
|
3635
|
+
Inputs?: string[] | undefined;
|
|
3636
|
+
/**
|
|
3637
|
+
* Applies only if the type is QUAD. The mode for handling the quad-link signal QUADRANT or INTERLEAVE.
|
|
3638
|
+
* @public
|
|
3639
|
+
*/
|
|
3640
|
+
Mode?: SdiSourceMode | undefined;
|
|
3641
|
+
/**
|
|
3642
|
+
* The name of the SdiSource.
|
|
3643
|
+
* @public
|
|
3644
|
+
*/
|
|
3645
|
+
Name?: string | undefined;
|
|
3646
|
+
/**
|
|
3647
|
+
* Specifies whether the SDI source is attached to an SDI input (IN_USE) or not (IDLE).
|
|
3648
|
+
* @public
|
|
3649
|
+
*/
|
|
3650
|
+
State?: SdiSourceState | undefined;
|
|
3651
|
+
/**
|
|
3652
|
+
* Used in SdiSource, CreateSdiSourceRequest, UpdateSdiSourceRequest.
|
|
3653
|
+
* @public
|
|
3654
|
+
*/
|
|
3655
|
+
Type?: SdiSourceType | undefined;
|
|
3656
|
+
}
|
|
3567
3657
|
/**
|
|
3568
3658
|
* @public
|
|
3569
3659
|
* @enum
|
|
@@ -6321,55 +6411,3 @@ export interface BlackoutSlate {
|
|
|
6321
6411
|
*/
|
|
6322
6412
|
State?: BlackoutSlateState | undefined;
|
|
6323
6413
|
}
|
|
6324
|
-
/**
|
|
6325
|
-
* Placeholder documentation for CancelInputDeviceTransferRequest
|
|
6326
|
-
* @public
|
|
6327
|
-
*/
|
|
6328
|
-
export interface CancelInputDeviceTransferRequest {
|
|
6329
|
-
/**
|
|
6330
|
-
* The unique ID of the input device to cancel. For example, hd-123456789abcdef.
|
|
6331
|
-
* @public
|
|
6332
|
-
*/
|
|
6333
|
-
InputDeviceId: string | undefined;
|
|
6334
|
-
}
|
|
6335
|
-
/**
|
|
6336
|
-
* Placeholder documentation for CancelInputDeviceTransferResponse
|
|
6337
|
-
* @public
|
|
6338
|
-
*/
|
|
6339
|
-
export interface CancelInputDeviceTransferResponse {
|
|
6340
|
-
}
|
|
6341
|
-
/**
|
|
6342
|
-
* Property of encoderSettings. Controls color conversion when you are using 3D LUT files to perform color conversion on video.
|
|
6343
|
-
* @public
|
|
6344
|
-
*/
|
|
6345
|
-
export interface ColorCorrectionSettings {
|
|
6346
|
-
/**
|
|
6347
|
-
* An array of colorCorrections that applies when you are using 3D LUT files to perform color conversion on video. Each colorCorrection contains one 3D LUT file (that defines the color mapping for converting an input color space to an output color space), and the input/output combination that this 3D LUT file applies to. MediaLive reads the color space in the input metadata, determines the color space that you have specified for the output, and finds and uses the LUT file that applies to this combination.
|
|
6348
|
-
* @public
|
|
6349
|
-
*/
|
|
6350
|
-
GlobalColorCorrections: ColorCorrection[] | undefined;
|
|
6351
|
-
}
|
|
6352
|
-
/**
|
|
6353
|
-
* @public
|
|
6354
|
-
* @enum
|
|
6355
|
-
*/
|
|
6356
|
-
export declare const FeatureActivationsInputPrepareScheduleActions: {
|
|
6357
|
-
readonly DISABLED: "DISABLED";
|
|
6358
|
-
readonly ENABLED: "ENABLED";
|
|
6359
|
-
};
|
|
6360
|
-
/**
|
|
6361
|
-
* @public
|
|
6362
|
-
*/
|
|
6363
|
-
export type FeatureActivationsInputPrepareScheduleActions = (typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
|
|
6364
|
-
/**
|
|
6365
|
-
* @public
|
|
6366
|
-
* @enum
|
|
6367
|
-
*/
|
|
6368
|
-
export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions: {
|
|
6369
|
-
readonly DISABLED: "DISABLED";
|
|
6370
|
-
readonly ENABLED: "ENABLED";
|
|
6371
|
-
};
|
|
6372
|
-
/**
|
|
6373
|
-
* @public
|
|
6374
|
-
*/
|
|
6375
|
-
export type FeatureActivationsOutputStaticImageOverlayScheduleActions = (typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
|
|
@@ -1,6 +1,58 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
-
import { AudioDescription, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelEngineVersionResponse, ChannelPipelineIdToRestart, ChannelPlacementGroupState, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterNetworkSettings, ClusterState, ClusterType, DescribeAnywhereSettings, DescribeChannelPlacementGroupSummary, DescribeClusterSummary, DescribeNetworkSummary, DescribeNodeSummary, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputNetworkLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, InterfaceMappingCreateRequest, InterfaceMappingUpdateRequest, IpPool, IpPoolCreateRequest, IpPoolUpdateRequest, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MediaResourceNeighbor, MulticastSettings, MulticastSourceCreateRequest, MulticastSourceUpdateRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, NetworkState, NodeConnectionState, NodeInterfaceMapping, NodeInterfaceMappingCreateRequest, NodeRole, NodeState, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, Route, Smpte2110ReceiverGroupSettings, SrtSettings, VpcOutputSettingsDescription } from "./models_0";
|
|
3
|
-
import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, BlackoutSlate,
|
|
2
|
+
import { AudioDescription, CaptionDescription, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelEngineVersionResponse, ChannelPipelineIdToRestart, ChannelPlacementGroupState, ChannelState, ChannelSummary, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateGroupSummary, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateSummary, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ClusterNetworkSettings, ClusterState, ClusterType, ColorCorrection, DescribeAnywhereSettings, DescribeChannelPlacementGroupSummary, DescribeClusterSummary, DescribeNetworkSummary, DescribeNodeSummary, DeviceSettingsSyncState, DeviceUpdateStatus, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateGroupSummary, EventBridgeRuleTemplateSummary, EventBridgeRuleTemplateTarget, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceCodec, InputDeviceConfigurableAudioChannelPairConfig, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceOutputType, InputDeviceRequest, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputNetworkLocation, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, InterfaceMappingCreateRequest, InterfaceMappingUpdateRequest, IpPool, IpPoolCreateRequest, IpPoolUpdateRequest, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MediaResourceNeighbor, MulticastSettings, MulticastSourceCreateRequest, MulticastSourceUpdateRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, NetworkState, NodeConnectionState, NodeInterfaceMapping, NodeInterfaceMappingCreateRequest, NodeRole, NodeState, Offering, OfferingDurationUnits, OfferingType, OutputDestination, ReservationResourceSpecification, Route, SdiSourceMapping, Smpte2110ReceiverGroupSettings, SrtSettings, VpcOutputSettingsDescription } from "./models_0";
|
|
3
|
+
import { AcceptHeader, AccountConfiguration, AnywhereSettings, AvailBlanking, AvailConfiguration, BlackoutSlate, OutputGroup, PipelineDetail, RenewalSettings, Reservation, ReservationState, RouteCreateRequest, RouteUpdateRequest, ScheduleAction, SdiSourceMode, SdiSourceState, SdiSourceSummary, SdiSourceType, SignalMapMonitorDeploymentStatus, SignalMapStatus, SignalMapSummary, SrtCallerSourceRequest, ThumbnailDetail, TransferringInputDeviceSummary, VideoDescription } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* Placeholder documentation for CancelInputDeviceTransferRequest
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface CancelInputDeviceTransferRequest {
|
|
9
|
+
/**
|
|
10
|
+
* The unique ID of the input device to cancel. For example, hd-123456789abcdef.
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
InputDeviceId: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Placeholder documentation for CancelInputDeviceTransferResponse
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface CancelInputDeviceTransferResponse {
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Property of encoderSettings. Controls color conversion when you are using 3D LUT files to perform color conversion on video.
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export interface ColorCorrectionSettings {
|
|
26
|
+
/**
|
|
27
|
+
* An array of colorCorrections that applies when you are using 3D LUT files to perform color conversion on video. Each colorCorrection contains one 3D LUT file (that defines the color mapping for converting an input color space to an output color space), and the input/output combination that this 3D LUT file applies to. MediaLive reads the color space in the input metadata, determines the color space that you have specified for the output, and finds and uses the LUT file that applies to this combination.
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
GlobalColorCorrections: ColorCorrection[] | undefined;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
* @enum
|
|
35
|
+
*/
|
|
36
|
+
export declare const FeatureActivationsInputPrepareScheduleActions: {
|
|
37
|
+
readonly DISABLED: "DISABLED";
|
|
38
|
+
readonly ENABLED: "ENABLED";
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export type FeatureActivationsInputPrepareScheduleActions = (typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
* @enum
|
|
47
|
+
*/
|
|
48
|
+
export declare const FeatureActivationsOutputStaticImageOverlayScheduleActions: {
|
|
49
|
+
readonly DISABLED: "DISABLED";
|
|
50
|
+
readonly ENABLED: "ENABLED";
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export type FeatureActivationsOutputStaticImageOverlayScheduleActions = (typeof FeatureActivationsOutputStaticImageOverlayScheduleActions)[keyof typeof FeatureActivationsOutputStaticImageOverlayScheduleActions];
|
|
4
56
|
/**
|
|
5
57
|
* Feature Activations
|
|
6
58
|
* @public
|
|
@@ -1407,6 +1459,11 @@ export interface CreateInputRequest {
|
|
|
1407
1459
|
* @public
|
|
1408
1460
|
*/
|
|
1409
1461
|
Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
|
|
1462
|
+
/**
|
|
1463
|
+
* SDI Sources for this Input.
|
|
1464
|
+
* @public
|
|
1465
|
+
*/
|
|
1466
|
+
SdiSources?: string[] | undefined;
|
|
1410
1467
|
}
|
|
1411
1468
|
/**
|
|
1412
1469
|
* Placeholder documentation for CreateInputResponse
|
|
@@ -1988,6 +2045,11 @@ export interface CreateNodeResponse {
|
|
|
1988
2045
|
* @public
|
|
1989
2046
|
*/
|
|
1990
2047
|
State?: NodeState | undefined;
|
|
2048
|
+
/**
|
|
2049
|
+
* An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
|
|
2050
|
+
* @public
|
|
2051
|
+
*/
|
|
2052
|
+
SdiSourceMappings?: SdiSourceMapping[] | undefined;
|
|
1991
2053
|
}
|
|
1992
2054
|
/**
|
|
1993
2055
|
* A request to create a new node registration script.
|
|
@@ -2069,6 +2131,89 @@ export interface CreatePartnerInputResponse {
|
|
|
2069
2131
|
*/
|
|
2070
2132
|
Input?: Input | undefined;
|
|
2071
2133
|
}
|
|
2134
|
+
/**
|
|
2135
|
+
* A request to create a SdiSource.
|
|
2136
|
+
* @public
|
|
2137
|
+
*/
|
|
2138
|
+
export interface CreateSdiSourceRequest {
|
|
2139
|
+
/**
|
|
2140
|
+
* Applies only if the type is QUAD. Specify the mode for handling the quad-link signal: QUADRANT or INTERLEAVE.
|
|
2141
|
+
* @public
|
|
2142
|
+
*/
|
|
2143
|
+
Mode?: SdiSourceMode | undefined;
|
|
2144
|
+
/**
|
|
2145
|
+
* Specify a name that is unique in the AWS account. We recommend you assign a name that describes the source, for example curling-cameraA. Names are case-sensitive.
|
|
2146
|
+
* @public
|
|
2147
|
+
*/
|
|
2148
|
+
Name?: string | undefined;
|
|
2149
|
+
/**
|
|
2150
|
+
* An ID that you assign to a create request. This ID ensures idempotency when creating resources.
|
|
2151
|
+
* @public
|
|
2152
|
+
*/
|
|
2153
|
+
RequestId?: string | undefined;
|
|
2154
|
+
/**
|
|
2155
|
+
* A collection of key-value pairs.
|
|
2156
|
+
* @public
|
|
2157
|
+
*/
|
|
2158
|
+
Tags?: Record<string, string> | undefined;
|
|
2159
|
+
/**
|
|
2160
|
+
* Specify the type of the SDI source: SINGLE: The source is a single-link source. QUAD: The source is one part of a quad-link source.
|
|
2161
|
+
* @public
|
|
2162
|
+
*/
|
|
2163
|
+
Type?: SdiSourceType | undefined;
|
|
2164
|
+
}
|
|
2165
|
+
/**
|
|
2166
|
+
* Used in CreateSdiSourceResponse, DeleteSdiSourceResponse, DescribeSdiSourceResponse, ListSdiSourcesResponse, UpdateSdiSourceResponse
|
|
2167
|
+
* @public
|
|
2168
|
+
*/
|
|
2169
|
+
export interface SdiSource {
|
|
2170
|
+
/**
|
|
2171
|
+
* The ARN of this SdiSource. It is automatically assigned when the SdiSource is created.
|
|
2172
|
+
* @public
|
|
2173
|
+
*/
|
|
2174
|
+
Arn?: string | undefined;
|
|
2175
|
+
/**
|
|
2176
|
+
* The ID of the SdiSource. Unique in the AWS account.The ID is the resource-id portion of the ARN.
|
|
2177
|
+
* @public
|
|
2178
|
+
*/
|
|
2179
|
+
Id?: string | undefined;
|
|
2180
|
+
/**
|
|
2181
|
+
* The list of inputs that are currently using this SDI source. This list will be empty if the SdiSource has just been deleted.
|
|
2182
|
+
* @public
|
|
2183
|
+
*/
|
|
2184
|
+
Inputs?: string[] | undefined;
|
|
2185
|
+
/**
|
|
2186
|
+
* Applies only if the type is QUAD. The mode for handling the quad-link signal QUADRANT or INTERLEAVE.
|
|
2187
|
+
* @public
|
|
2188
|
+
*/
|
|
2189
|
+
Mode?: SdiSourceMode | undefined;
|
|
2190
|
+
/**
|
|
2191
|
+
* The name of the SdiSource.
|
|
2192
|
+
* @public
|
|
2193
|
+
*/
|
|
2194
|
+
Name?: string | undefined;
|
|
2195
|
+
/**
|
|
2196
|
+
* Specifies whether the SDI source is attached to an SDI input (IN_USE) or not (IDLE).
|
|
2197
|
+
* @public
|
|
2198
|
+
*/
|
|
2199
|
+
State?: SdiSourceState | undefined;
|
|
2200
|
+
/**
|
|
2201
|
+
* Used in SdiSource, CreateSdiSourceRequest, UpdateSdiSourceRequest.
|
|
2202
|
+
* @public
|
|
2203
|
+
*/
|
|
2204
|
+
Type?: SdiSourceType | undefined;
|
|
2205
|
+
}
|
|
2206
|
+
/**
|
|
2207
|
+
* Placeholder documentation for CreateSdiSourceResponse
|
|
2208
|
+
* @public
|
|
2209
|
+
*/
|
|
2210
|
+
export interface CreateSdiSourceResponse {
|
|
2211
|
+
/**
|
|
2212
|
+
* Settings for the SDI source.
|
|
2213
|
+
* @public
|
|
2214
|
+
*/
|
|
2215
|
+
SdiSource?: SdiSource | undefined;
|
|
2216
|
+
}
|
|
2072
2217
|
/**
|
|
2073
2218
|
* Placeholder documentation for CreateSignalMapRequest
|
|
2074
2219
|
* @public
|
|
@@ -2828,6 +2973,11 @@ export interface DeleteNodeResponse {
|
|
|
2828
2973
|
* @public
|
|
2829
2974
|
*/
|
|
2830
2975
|
State?: NodeState | undefined;
|
|
2976
|
+
/**
|
|
2977
|
+
* An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
|
|
2978
|
+
* @public
|
|
2979
|
+
*/
|
|
2980
|
+
SdiSourceMappings?: SdiSourceMapping[] | undefined;
|
|
2831
2981
|
}
|
|
2832
2982
|
/**
|
|
2833
2983
|
* Placeholder documentation for DeleteReservationRequest
|
|
@@ -2958,6 +3108,28 @@ export interface DeleteScheduleRequest {
|
|
|
2958
3108
|
*/
|
|
2959
3109
|
export interface DeleteScheduleResponse {
|
|
2960
3110
|
}
|
|
3111
|
+
/**
|
|
3112
|
+
* Placeholder documentation for DeleteSdiSourceRequest
|
|
3113
|
+
* @public
|
|
3114
|
+
*/
|
|
3115
|
+
export interface DeleteSdiSourceRequest {
|
|
3116
|
+
/**
|
|
3117
|
+
* The ID of the SdiSource.
|
|
3118
|
+
* @public
|
|
3119
|
+
*/
|
|
3120
|
+
SdiSourceId: string | undefined;
|
|
3121
|
+
}
|
|
3122
|
+
/**
|
|
3123
|
+
* Placeholder documentation for DeleteSdiSourceResponse
|
|
3124
|
+
* @public
|
|
3125
|
+
*/
|
|
3126
|
+
export interface DeleteSdiSourceResponse {
|
|
3127
|
+
/**
|
|
3128
|
+
* Settings for the SDI source.
|
|
3129
|
+
* @public
|
|
3130
|
+
*/
|
|
3131
|
+
SdiSource?: SdiSource | undefined;
|
|
3132
|
+
}
|
|
2961
3133
|
/**
|
|
2962
3134
|
* Placeholder documentation for DeleteSignalMapRequest
|
|
2963
3135
|
* @public
|
|
@@ -3354,6 +3526,11 @@ export interface DescribeInputResponse {
|
|
|
3354
3526
|
* @public
|
|
3355
3527
|
*/
|
|
3356
3528
|
Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
|
|
3529
|
+
/**
|
|
3530
|
+
* SDI Sources for this Input.
|
|
3531
|
+
* @public
|
|
3532
|
+
*/
|
|
3533
|
+
SdiSources?: string[] | undefined;
|
|
3357
3534
|
}
|
|
3358
3535
|
/**
|
|
3359
3536
|
* Placeholder documentation for DescribeInputDeviceRequest
|
|
@@ -3783,6 +3960,11 @@ export interface DescribeNodeResponse {
|
|
|
3783
3960
|
* @public
|
|
3784
3961
|
*/
|
|
3785
3962
|
State?: NodeState | undefined;
|
|
3963
|
+
/**
|
|
3964
|
+
* An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
|
|
3965
|
+
* @public
|
|
3966
|
+
*/
|
|
3967
|
+
SdiSourceMappings?: SdiSourceMapping[] | undefined;
|
|
3786
3968
|
}
|
|
3787
3969
|
/**
|
|
3788
3970
|
* Placeholder documentation for DescribeOfferingRequest
|
|
@@ -4005,6 +4187,28 @@ export interface DescribeScheduleResponse {
|
|
|
4005
4187
|
*/
|
|
4006
4188
|
ScheduleActions?: ScheduleAction[] | undefined;
|
|
4007
4189
|
}
|
|
4190
|
+
/**
|
|
4191
|
+
* Placeholder documentation for DescribeSdiSourceRequest
|
|
4192
|
+
* @public
|
|
4193
|
+
*/
|
|
4194
|
+
export interface DescribeSdiSourceRequest {
|
|
4195
|
+
/**
|
|
4196
|
+
* Get details about an SdiSource.
|
|
4197
|
+
* @public
|
|
4198
|
+
*/
|
|
4199
|
+
SdiSourceId: string | undefined;
|
|
4200
|
+
}
|
|
4201
|
+
/**
|
|
4202
|
+
* Placeholder documentation for DescribeSdiSourceResponse
|
|
4203
|
+
* @public
|
|
4204
|
+
*/
|
|
4205
|
+
export interface DescribeSdiSourceResponse {
|
|
4206
|
+
/**
|
|
4207
|
+
* Settings for the SDI source.
|
|
4208
|
+
* @public
|
|
4209
|
+
*/
|
|
4210
|
+
SdiSource?: SdiSource | undefined;
|
|
4211
|
+
}
|
|
4008
4212
|
/**
|
|
4009
4213
|
* Placeholder documentation for DescribeThumbnailsRequest
|
|
4010
4214
|
* @public
|
|
@@ -5173,6 +5377,38 @@ export interface ListReservationsResponse {
|
|
|
5173
5377
|
*/
|
|
5174
5378
|
Reservations?: Reservation[] | undefined;
|
|
5175
5379
|
}
|
|
5380
|
+
/**
|
|
5381
|
+
* Placeholder documentation for ListSdiSourcesRequest
|
|
5382
|
+
* @public
|
|
5383
|
+
*/
|
|
5384
|
+
export interface ListSdiSourcesRequest {
|
|
5385
|
+
/**
|
|
5386
|
+
* The maximum number of items to return.
|
|
5387
|
+
* @public
|
|
5388
|
+
*/
|
|
5389
|
+
MaxResults?: number | undefined;
|
|
5390
|
+
/**
|
|
5391
|
+
* The token to retrieve the next page of results.
|
|
5392
|
+
* @public
|
|
5393
|
+
*/
|
|
5394
|
+
NextToken?: string | undefined;
|
|
5395
|
+
}
|
|
5396
|
+
/**
|
|
5397
|
+
* Placeholder documentation for ListSdiSourcesResponse
|
|
5398
|
+
* @public
|
|
5399
|
+
*/
|
|
5400
|
+
export interface ListSdiSourcesResponse {
|
|
5401
|
+
/**
|
|
5402
|
+
* Placeholder documentation for __string
|
|
5403
|
+
* @public
|
|
5404
|
+
*/
|
|
5405
|
+
NextToken?: string | undefined;
|
|
5406
|
+
/**
|
|
5407
|
+
* Placeholder documentation for __listOfSdiSourceSummary
|
|
5408
|
+
* @public
|
|
5409
|
+
*/
|
|
5410
|
+
SdiSources?: SdiSourceSummary[] | undefined;
|
|
5411
|
+
}
|
|
5176
5412
|
/**
|
|
5177
5413
|
* Placeholder documentation for ListSignalMapsRequest
|
|
5178
5414
|
* @public
|
|
@@ -7021,6 +7257,11 @@ export interface UpdateInputRequest {
|
|
|
7021
7257
|
* @public
|
|
7022
7258
|
*/
|
|
7023
7259
|
Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings | undefined;
|
|
7260
|
+
/**
|
|
7261
|
+
* SDI Sources for this Input.
|
|
7262
|
+
* @public
|
|
7263
|
+
*/
|
|
7264
|
+
SdiSources?: string[] | undefined;
|
|
7024
7265
|
}
|
|
7025
7266
|
/**
|
|
7026
7267
|
* Placeholder documentation for UpdateInputResponse
|
|
@@ -7320,6 +7561,27 @@ export interface UpdateNetworkResponse {
|
|
|
7320
7561
|
*/
|
|
7321
7562
|
State?: NetworkState | undefined;
|
|
7322
7563
|
}
|
|
7564
|
+
/**
|
|
7565
|
+
* Used in SdiSourceMappingsUpdateRequest. One SDI source mapping. It connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses. You must specify all three parameters in this object.
|
|
7566
|
+
* @public
|
|
7567
|
+
*/
|
|
7568
|
+
export interface SdiSourceMappingUpdateRequest {
|
|
7569
|
+
/**
|
|
7570
|
+
* A number that uniquely identifies the SDI card on the node hardware. For information about how physical cards are identified on your node hardware, see the documentation for your node hardware. The numbering always starts at 1.
|
|
7571
|
+
* @public
|
|
7572
|
+
*/
|
|
7573
|
+
CardNumber?: number | undefined;
|
|
7574
|
+
/**
|
|
7575
|
+
* A number that uniquely identifies a port on the card. This must be an SDI port (not a timecode port, for example). For information about how ports are identified on physical cards, see the documentation for your node hardware.
|
|
7576
|
+
* @public
|
|
7577
|
+
*/
|
|
7578
|
+
ChannelNumber?: number | undefined;
|
|
7579
|
+
/**
|
|
7580
|
+
* The ID of a SDI source streaming on the given SDI capture card port.
|
|
7581
|
+
* @public
|
|
7582
|
+
*/
|
|
7583
|
+
SdiSource?: string | undefined;
|
|
7584
|
+
}
|
|
7323
7585
|
/**
|
|
7324
7586
|
* A request to update the node.
|
|
7325
7587
|
* @public
|
|
@@ -7345,6 +7607,11 @@ export interface UpdateNodeRequest {
|
|
|
7345
7607
|
* @public
|
|
7346
7608
|
*/
|
|
7347
7609
|
Role?: NodeRole | undefined;
|
|
7610
|
+
/**
|
|
7611
|
+
* The mappings of a SDI capture card port to a logical SDI data stream
|
|
7612
|
+
* @public
|
|
7613
|
+
*/
|
|
7614
|
+
SdiSourceMappings?: SdiSourceMappingUpdateRequest[] | undefined;
|
|
7348
7615
|
}
|
|
7349
7616
|
/**
|
|
7350
7617
|
* Placeholder documentation for UpdateNodeResponse
|
|
@@ -7401,6 +7668,11 @@ export interface UpdateNodeResponse {
|
|
|
7401
7668
|
* @public
|
|
7402
7669
|
*/
|
|
7403
7670
|
State?: NodeState | undefined;
|
|
7671
|
+
/**
|
|
7672
|
+
* An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
|
|
7673
|
+
* @public
|
|
7674
|
+
*/
|
|
7675
|
+
SdiSourceMappings?: SdiSourceMapping[] | undefined;
|
|
7404
7676
|
}
|
|
7405
7677
|
/**
|
|
7406
7678
|
* @public
|
|
@@ -7490,6 +7762,11 @@ export interface UpdateNodeStateResponse {
|
|
|
7490
7762
|
* @public
|
|
7491
7763
|
*/
|
|
7492
7764
|
State?: NodeState | undefined;
|
|
7765
|
+
/**
|
|
7766
|
+
* An array of SDI source mappings. Each mapping connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses.
|
|
7767
|
+
* @public
|
|
7768
|
+
*/
|
|
7769
|
+
SdiSourceMappings?: SdiSourceMapping[] | undefined;
|
|
7493
7770
|
}
|
|
7494
7771
|
/**
|
|
7495
7772
|
* Request to update a reservation
|
|
@@ -7523,6 +7800,43 @@ export interface UpdateReservationResponse {
|
|
|
7523
7800
|
*/
|
|
7524
7801
|
Reservation?: Reservation | undefined;
|
|
7525
7802
|
}
|
|
7803
|
+
/**
|
|
7804
|
+
* A request to update the SdiSource.
|
|
7805
|
+
* @public
|
|
7806
|
+
*/
|
|
7807
|
+
export interface UpdateSdiSourceRequest {
|
|
7808
|
+
/**
|
|
7809
|
+
* Include this parameter only if you want to change the name of the SdiSource. Specify a name that is unique in the AWS account. We recommend you assign a name that describes the source, for example curling-cameraA. Names are case-sensitive.
|
|
7810
|
+
* @public
|
|
7811
|
+
*/
|
|
7812
|
+
Mode?: SdiSourceMode | undefined;
|
|
7813
|
+
/**
|
|
7814
|
+
* Include this parameter only if you want to change the name of the SdiSource. Specify a name that is unique in the AWS account. We recommend you assign a name that describes the source, for example curling-cameraA. Names are case-sensitive.
|
|
7815
|
+
* @public
|
|
7816
|
+
*/
|
|
7817
|
+
Name?: string | undefined;
|
|
7818
|
+
/**
|
|
7819
|
+
* The ID of the SdiSource
|
|
7820
|
+
* @public
|
|
7821
|
+
*/
|
|
7822
|
+
SdiSourceId: string | undefined;
|
|
7823
|
+
/**
|
|
7824
|
+
* Include this parameter only if you want to change the mode. Specify the type of the SDI source: SINGLE: The source is a single-link source. QUAD: The source is one part of a quad-link source.
|
|
7825
|
+
* @public
|
|
7826
|
+
*/
|
|
7827
|
+
Type?: SdiSourceType | undefined;
|
|
7828
|
+
}
|
|
7829
|
+
/**
|
|
7830
|
+
* Placeholder documentation for UpdateSdiSourceResponse
|
|
7831
|
+
* @public
|
|
7832
|
+
*/
|
|
7833
|
+
export interface UpdateSdiSourceResponse {
|
|
7834
|
+
/**
|
|
7835
|
+
* Settings for the SDI source.
|
|
7836
|
+
* @public
|
|
7837
|
+
*/
|
|
7838
|
+
SdiSource?: SdiSource | undefined;
|
|
7839
|
+
}
|
|
7526
7840
|
/**
|
|
7527
7841
|
* @internal
|
|
7528
7842
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSdiSourcesCommandInput, ListSdiSourcesCommandOutput } from "../commands/ListSdiSourcesCommand";
|
|
3
|
+
import { MediaLivePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListSdiSources: (config: MediaLivePaginationConfiguration, input: ListSdiSourcesCommandInput, ...rest: any[]) => Paginator<ListSdiSourcesCommandOutput>;
|