@aws-sdk/client-medialive 3.613.0 → 3.616.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/dist-cjs/index.js +73 -10
- package/dist-es/MediaLiveClient.js +5 -5
- package/dist-es/models/models_0.js +6 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +59 -0
- package/dist-types/MediaLiveClient.d.ts +2 -2
- package/dist-types/commands/CreateInputCommand.d.ts +30 -2
- package/dist-types/commands/CreatePartnerInputCommand.d.ts +15 -1
- package/dist-types/commands/CreateSignalMapCommand.d.ts +1 -1
- package/dist-types/commands/CreateTagsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteChannelCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInputCommand.d.ts +15 -1
- package/dist-types/commands/ListInputsCommand.d.ts +15 -1
- package/dist-types/commands/UpdateInputCommand.d.ts +29 -1
- package/dist-types/models/models_0.d.ts +77 -56
- package/dist-types/models/models_1.d.ts +135 -220
- package/dist-types/models/models_2.d.ts +229 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MediaLiveClient.d.ts +2 -2
- package/dist-types/ts3.4/commands/CreateSignalMapCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +22 -17
- package/dist-types/ts3.4/models/models_1.d.ts +33 -52
- package/dist-types/ts3.4/models/models_2.d.ts +55 -3
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +25 -25
|
@@ -561,7 +561,6 @@ export type Eac3AtmosDrcRf = (typeof Eac3AtmosDrcRf)[keyof typeof Eac3AtmosDrcRf
|
|
|
561
561
|
export interface Eac3AtmosSettings {
|
|
562
562
|
/**
|
|
563
563
|
* Average bitrate in bits/second. Valid bitrates depend on the coding mode.
|
|
564
|
-
* // * @affectsRightSizing true
|
|
565
564
|
* @public
|
|
566
565
|
*/
|
|
567
566
|
Bitrate?: number;
|
|
@@ -3651,6 +3650,77 @@ export interface InputSource {
|
|
|
3651
3650
|
*/
|
|
3652
3651
|
Username?: string;
|
|
3653
3652
|
}
|
|
3653
|
+
/**
|
|
3654
|
+
* @public
|
|
3655
|
+
* @enum
|
|
3656
|
+
*/
|
|
3657
|
+
export declare const Algorithm: {
|
|
3658
|
+
readonly AES128: "AES128";
|
|
3659
|
+
readonly AES192: "AES192";
|
|
3660
|
+
readonly AES256: "AES256";
|
|
3661
|
+
};
|
|
3662
|
+
/**
|
|
3663
|
+
* @public
|
|
3664
|
+
*/
|
|
3665
|
+
export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
|
|
3666
|
+
/**
|
|
3667
|
+
* The decryption settings for the SRT caller source. Present only if the source has decryption enabled.
|
|
3668
|
+
* @public
|
|
3669
|
+
*/
|
|
3670
|
+
export interface SrtCallerDecryption {
|
|
3671
|
+
/**
|
|
3672
|
+
* The algorithm used to encrypt content.
|
|
3673
|
+
* @public
|
|
3674
|
+
*/
|
|
3675
|
+
Algorithm?: Algorithm;
|
|
3676
|
+
/**
|
|
3677
|
+
* The ARN for the secret in Secrets Manager. Someone in your organization must create a secret and provide you with its ARN. The secret holds the passphrase that MediaLive uses to decrypt the source content.
|
|
3678
|
+
* @public
|
|
3679
|
+
*/
|
|
3680
|
+
PassphraseSecretArn?: string;
|
|
3681
|
+
}
|
|
3682
|
+
/**
|
|
3683
|
+
* The configuration for a source that uses SRT as the connection protocol. In terms of establishing the connection, MediaLive is always caller and the upstream system is always the listener. In terms of transmission of the source content, MediaLive is always the receiver and the upstream system is always the sender.
|
|
3684
|
+
* @public
|
|
3685
|
+
*/
|
|
3686
|
+
export interface SrtCallerSource {
|
|
3687
|
+
/**
|
|
3688
|
+
* The decryption settings for the SRT caller source. Present only if the source has decryption enabled.
|
|
3689
|
+
* @public
|
|
3690
|
+
*/
|
|
3691
|
+
Decryption?: SrtCallerDecryption;
|
|
3692
|
+
/**
|
|
3693
|
+
* The preferred latency (in milliseconds) for implementing packet loss and recovery. Packet recovery is a key feature of SRT.
|
|
3694
|
+
* @public
|
|
3695
|
+
*/
|
|
3696
|
+
MinimumLatency?: number;
|
|
3697
|
+
/**
|
|
3698
|
+
* The IP address at the upstream system (the listener) that MediaLive (the caller) connects to.
|
|
3699
|
+
* @public
|
|
3700
|
+
*/
|
|
3701
|
+
SrtListenerAddress?: string;
|
|
3702
|
+
/**
|
|
3703
|
+
* The port at the upstream system (the listener) that MediaLive (the caller) connects to.
|
|
3704
|
+
* @public
|
|
3705
|
+
*/
|
|
3706
|
+
SrtListenerPort?: string;
|
|
3707
|
+
/**
|
|
3708
|
+
* The stream ID, if the upstream system uses this identifier.
|
|
3709
|
+
* @public
|
|
3710
|
+
*/
|
|
3711
|
+
StreamId?: string;
|
|
3712
|
+
}
|
|
3713
|
+
/**
|
|
3714
|
+
* The configured sources for this SRT input.
|
|
3715
|
+
* @public
|
|
3716
|
+
*/
|
|
3717
|
+
export interface SrtSettings {
|
|
3718
|
+
/**
|
|
3719
|
+
* Placeholder documentation for __listOfSrtCallerSource
|
|
3720
|
+
* @public
|
|
3721
|
+
*/
|
|
3722
|
+
SrtCallerSources?: SrtCallerSource[];
|
|
3723
|
+
}
|
|
3654
3724
|
/**
|
|
3655
3725
|
* @public
|
|
3656
3726
|
* @enum
|
|
@@ -3678,6 +3748,7 @@ export declare const InputType: {
|
|
|
3678
3748
|
readonly RTMP_PULL: "RTMP_PULL";
|
|
3679
3749
|
readonly RTMP_PUSH: "RTMP_PUSH";
|
|
3680
3750
|
readonly RTP_PUSH: "RTP_PUSH";
|
|
3751
|
+
readonly SRT_CALLER: "SRT_CALLER";
|
|
3681
3752
|
readonly TS_FILE: "TS_FILE";
|
|
3682
3753
|
readonly UDP_PUSH: "UDP_PUSH";
|
|
3683
3754
|
readonly URL_PULL: "URL_PULL";
|
|
@@ -3773,6 +3844,11 @@ export interface Input {
|
|
|
3773
3844
|
* @public
|
|
3774
3845
|
*/
|
|
3775
3846
|
Type?: InputType;
|
|
3847
|
+
/**
|
|
3848
|
+
* The settings associated with an SRT input.
|
|
3849
|
+
* @public
|
|
3850
|
+
*/
|
|
3851
|
+
SrtSettings?: SrtSettings;
|
|
3776
3852
|
}
|
|
3777
3853
|
/**
|
|
3778
3854
|
* Endpoint settings for a PUSH type input.
|
|
@@ -5979,58 +6055,3 @@ export declare const S3CannedAcl: {
|
|
|
5979
6055
|
* @public
|
|
5980
6056
|
*/
|
|
5981
6057
|
export type S3CannedAcl = (typeof S3CannedAcl)[keyof typeof S3CannedAcl];
|
|
5982
|
-
/**
|
|
5983
|
-
* Archive S3 Settings
|
|
5984
|
-
* @public
|
|
5985
|
-
*/
|
|
5986
|
-
export interface ArchiveS3Settings {
|
|
5987
|
-
/**
|
|
5988
|
-
* Specify the canned ACL to apply to each S3 request. Defaults to none.
|
|
5989
|
-
* @public
|
|
5990
|
-
*/
|
|
5991
|
-
CannedAcl?: S3CannedAcl;
|
|
5992
|
-
}
|
|
5993
|
-
/**
|
|
5994
|
-
* Archive Cdn Settings
|
|
5995
|
-
* @public
|
|
5996
|
-
*/
|
|
5997
|
-
export interface ArchiveCdnSettings {
|
|
5998
|
-
/**
|
|
5999
|
-
* Archive S3 Settings
|
|
6000
|
-
* @public
|
|
6001
|
-
*/
|
|
6002
|
-
ArchiveS3Settings?: ArchiveS3Settings;
|
|
6003
|
-
}
|
|
6004
|
-
/**
|
|
6005
|
-
* Archive Group Settings
|
|
6006
|
-
* @public
|
|
6007
|
-
*/
|
|
6008
|
-
export interface ArchiveGroupSettings {
|
|
6009
|
-
/**
|
|
6010
|
-
* Parameters that control interactions with the CDN.
|
|
6011
|
-
* @public
|
|
6012
|
-
*/
|
|
6013
|
-
ArchiveCdnSettings?: ArchiveCdnSettings;
|
|
6014
|
-
/**
|
|
6015
|
-
* A directory and base filename where archive files should be written.
|
|
6016
|
-
* @public
|
|
6017
|
-
*/
|
|
6018
|
-
Destination: OutputLocationRef | undefined;
|
|
6019
|
-
/**
|
|
6020
|
-
* Number of seconds to write to archive file before closing and starting a new one.
|
|
6021
|
-
* @public
|
|
6022
|
-
*/
|
|
6023
|
-
RolloverInterval?: number;
|
|
6024
|
-
}
|
|
6025
|
-
/**
|
|
6026
|
-
* @public
|
|
6027
|
-
* @enum
|
|
6028
|
-
*/
|
|
6029
|
-
export declare const CmafNielsenId3Behavior: {
|
|
6030
|
-
readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
|
|
6031
|
-
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
6032
|
-
};
|
|
6033
|
-
/**
|
|
6034
|
-
* @public
|
|
6035
|
-
*/
|
|
6036
|
-
export type CmafNielsenId3Behavior = (typeof CmafNielsenId3Behavior)[keyof typeof CmafNielsenId3Behavior];
|
|
@@ -1,6 +1,61 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException";
|
|
3
|
-
import {
|
|
3
|
+
import { Algorithm, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, CloudWatchAlarmTemplateComparisonOperator, CloudWatchAlarmTemplateStatistic, CloudWatchAlarmTemplateTargetResourceType, CloudWatchAlarmTemplateTreatMissingData, ColorCorrection, EventBridgeRuleTemplateEventType, EventBridgeRuleTemplateTarget, Hdr10Settings, HlsAdMarkers, Input, InputAttachment, InputDestinationRequest, InputDeviceSettings, InputLocation, InputSecurityGroup, InputSourceRequest, InputSpecification, InputType, InputWhitelistRuleCidr, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexState, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, S3CannedAcl, VpcOutputSettingsDescription } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* Archive S3 Settings
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface ArchiveS3Settings {
|
|
9
|
+
/**
|
|
10
|
+
* Specify the canned ACL to apply to each S3 request. Defaults to none.
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
CannedAcl?: S3CannedAcl;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Archive Cdn Settings
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface ArchiveCdnSettings {
|
|
20
|
+
/**
|
|
21
|
+
* Archive S3 Settings
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
ArchiveS3Settings?: ArchiveS3Settings;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Archive Group Settings
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export interface ArchiveGroupSettings {
|
|
31
|
+
/**
|
|
32
|
+
* Parameters that control interactions with the CDN.
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
ArchiveCdnSettings?: ArchiveCdnSettings;
|
|
36
|
+
/**
|
|
37
|
+
* A directory and base filename where archive files should be written.
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
Destination: OutputLocationRef | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* Number of seconds to write to archive file before closing and starting a new one.
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
RolloverInterval?: number;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
* @enum
|
|
50
|
+
*/
|
|
51
|
+
export declare const CmafNielsenId3Behavior: {
|
|
52
|
+
readonly NO_PASSTHROUGH: "NO_PASSTHROUGH";
|
|
53
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export type CmafNielsenId3Behavior = (typeof CmafNielsenId3Behavior)[keyof typeof CmafNielsenId3Behavior];
|
|
4
59
|
/**
|
|
5
60
|
* @public
|
|
6
61
|
* @enum
|
|
@@ -2379,6 +2434,53 @@ export interface SignalMapSummary {
|
|
|
2379
2434
|
*/
|
|
2380
2435
|
Tags?: Record<string, string>;
|
|
2381
2436
|
}
|
|
2437
|
+
/**
|
|
2438
|
+
* Complete these parameters only if the content is encrypted.
|
|
2439
|
+
* @public
|
|
2440
|
+
*/
|
|
2441
|
+
export interface SrtCallerDecryptionRequest {
|
|
2442
|
+
/**
|
|
2443
|
+
* The algorithm used to encrypt content.
|
|
2444
|
+
* @public
|
|
2445
|
+
*/
|
|
2446
|
+
Algorithm?: Algorithm;
|
|
2447
|
+
/**
|
|
2448
|
+
* The ARN for the secret in Secrets Manager. Someone in your organization must create a secret and provide you with its ARN. This secret holds the passphrase that MediaLive will use to decrypt the source content.
|
|
2449
|
+
* @public
|
|
2450
|
+
*/
|
|
2451
|
+
PassphraseSecretArn?: string;
|
|
2452
|
+
}
|
|
2453
|
+
/**
|
|
2454
|
+
* Configures the connection for a source that uses SRT as the connection protocol. In terms of establishing the connection, MediaLive is always the caller and the upstream system is always the listener. In terms of transmission of the source content, MediaLive is always the receiver and the upstream system is always the sender.
|
|
2455
|
+
* @public
|
|
2456
|
+
*/
|
|
2457
|
+
export interface SrtCallerSourceRequest {
|
|
2458
|
+
/**
|
|
2459
|
+
* Complete these parameters only if the content is encrypted.
|
|
2460
|
+
* @public
|
|
2461
|
+
*/
|
|
2462
|
+
Decryption?: SrtCallerDecryptionRequest;
|
|
2463
|
+
/**
|
|
2464
|
+
* The preferred latency (in milliseconds) for implementing packet loss and recovery. Packet recovery is a key feature of SRT. Obtain this value from the operator at the upstream system.
|
|
2465
|
+
* @public
|
|
2466
|
+
*/
|
|
2467
|
+
MinimumLatency?: number;
|
|
2468
|
+
/**
|
|
2469
|
+
* The IP address at the upstream system (the listener) that MediaLive (the caller) will connect to.
|
|
2470
|
+
* @public
|
|
2471
|
+
*/
|
|
2472
|
+
SrtListenerAddress?: string;
|
|
2473
|
+
/**
|
|
2474
|
+
* The port at the upstream system (the listener) that MediaLive (the caller) will connect to.
|
|
2475
|
+
* @public
|
|
2476
|
+
*/
|
|
2477
|
+
SrtListenerPort?: string;
|
|
2478
|
+
/**
|
|
2479
|
+
* This value is required if the upstream system uses this identifier because without it, the SRT handshake between MediaLive (the caller) and the upstream system (the listener) might fail.
|
|
2480
|
+
* @public
|
|
2481
|
+
*/
|
|
2482
|
+
StreamId?: string;
|
|
2483
|
+
}
|
|
2382
2484
|
/**
|
|
2383
2485
|
* @public
|
|
2384
2486
|
* @enum
|
|
@@ -3041,7 +3143,14 @@ export interface H264Settings {
|
|
|
3041
3143
|
*/
|
|
3042
3144
|
EntropyEncoding?: H264EntropyEncoding;
|
|
3043
3145
|
/**
|
|
3044
|
-
* Optional filters
|
|
3146
|
+
* Optional. Both filters reduce bandwidth by removing imperceptible details. You can enable one of the filters. We
|
|
3147
|
+
* recommend that you try both filters and observe the results to decide which one to use.
|
|
3148
|
+
*
|
|
3149
|
+
* The Temporal Filter reduces bandwidth by removing imperceptible details in the content. It combines perceptual
|
|
3150
|
+
* filtering and motion compensated temporal filtering (MCTF). It operates independently of the compression level.
|
|
3151
|
+
*
|
|
3152
|
+
* The Bandwidth Reduction filter is a perceptual filter located within the encoding loop. It adapts to the current
|
|
3153
|
+
* compression level to filter imperceptible signals. This filter works only when the resolution is 1080p or lower.
|
|
3045
3154
|
* @public
|
|
3046
3155
|
*/
|
|
3047
3156
|
FilterSettings?: H264FilterSettings;
|
|
@@ -3554,7 +3663,14 @@ export interface H265Settings {
|
|
|
3554
3663
|
*/
|
|
3555
3664
|
ColorSpaceSettings?: H265ColorSpaceSettings;
|
|
3556
3665
|
/**
|
|
3557
|
-
* Optional filters
|
|
3666
|
+
* Optional. Both filters reduce bandwidth by removing imperceptible details. You can enable one of the filters. We
|
|
3667
|
+
* recommend that you try both filters and observe the results to decide which one to use.
|
|
3668
|
+
*
|
|
3669
|
+
* The Temporal Filter reduces bandwidth by removing imperceptible details in the content. It combines perceptual
|
|
3670
|
+
* filtering and motion compensated temporal filtering (MCTF). It operates independently of the compression level.
|
|
3671
|
+
*
|
|
3672
|
+
* The Bandwidth Reduction filter is a perceptual filter located within the encoding loop. It adapts to the current
|
|
3673
|
+
* compression level to filter imperceptible signals. This filter works only when the resolution is 1080p or lower.
|
|
3558
3674
|
* @public
|
|
3559
3675
|
*/
|
|
3560
3676
|
FilterSettings?: H265FilterSettings;
|
|
@@ -5760,6 +5876,17 @@ export interface CreateEventBridgeRuleTemplateGroupResponse {
|
|
|
5760
5876
|
*/
|
|
5761
5877
|
Tags?: Record<string, string>;
|
|
5762
5878
|
}
|
|
5879
|
+
/**
|
|
5880
|
+
* Configures the sources for this SRT input. For a single-pipeline input, include one srtCallerSource in the array. For a standard-pipeline input, include two srtCallerSource.
|
|
5881
|
+
* @public
|
|
5882
|
+
*/
|
|
5883
|
+
export interface SrtSettingsRequest {
|
|
5884
|
+
/**
|
|
5885
|
+
* Placeholder documentation for __listOfSrtCallerSourceRequest
|
|
5886
|
+
* @public
|
|
5887
|
+
*/
|
|
5888
|
+
SrtCallerSources?: SrtCallerSourceRequest[];
|
|
5889
|
+
}
|
|
5763
5890
|
/**
|
|
5764
5891
|
* Settings for a private VPC Input.
|
|
5765
5892
|
* When this property is specified, the input destination addresses will be created in a VPC rather than with public Internet addresses.
|
|
@@ -5849,6 +5976,11 @@ export interface CreateInputRequest {
|
|
|
5849
5976
|
* @public
|
|
5850
5977
|
*/
|
|
5851
5978
|
Vpc?: InputVpcRequest;
|
|
5979
|
+
/**
|
|
5980
|
+
* The settings associated with an SRT input.
|
|
5981
|
+
* @public
|
|
5982
|
+
*/
|
|
5983
|
+
SrtSettings?: SrtSettingsRequest;
|
|
5852
5984
|
}
|
|
5853
5985
|
/**
|
|
5854
5986
|
* Placeholder documentation for CreateInputResponse
|
|
@@ -6280,220 +6412,3 @@ export interface CreatePartnerInputResponse {
|
|
|
6280
6412
|
*/
|
|
6281
6413
|
Input?: Input;
|
|
6282
6414
|
}
|
|
6283
|
-
/**
|
|
6284
|
-
* Placeholder documentation for CreateSignalMapRequest
|
|
6285
|
-
* @public
|
|
6286
|
-
*/
|
|
6287
|
-
export interface CreateSignalMapRequest {
|
|
6288
|
-
/**
|
|
6289
|
-
* Placeholder documentation for __listOf__stringPatternS
|
|
6290
|
-
* @public
|
|
6291
|
-
*/
|
|
6292
|
-
CloudWatchAlarmTemplateGroupIdentifiers?: string[];
|
|
6293
|
-
/**
|
|
6294
|
-
* A resource's optional description.
|
|
6295
|
-
* @public
|
|
6296
|
-
*/
|
|
6297
|
-
Description?: string;
|
|
6298
|
-
/**
|
|
6299
|
-
* A top-level supported AWS resource ARN to discovery a signal map from.
|
|
6300
|
-
* @public
|
|
6301
|
-
*/
|
|
6302
|
-
DiscoveryEntryPointArn: string | undefined;
|
|
6303
|
-
/**
|
|
6304
|
-
* Placeholder documentation for __listOf__stringPatternS
|
|
6305
|
-
* @public
|
|
6306
|
-
*/
|
|
6307
|
-
EventBridgeRuleTemplateGroupIdentifiers?: string[];
|
|
6308
|
-
/**
|
|
6309
|
-
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
|
|
6310
|
-
* @public
|
|
6311
|
-
*/
|
|
6312
|
-
Name: string | undefined;
|
|
6313
|
-
/**
|
|
6314
|
-
* Represents the tags associated with a resource.
|
|
6315
|
-
* @public
|
|
6316
|
-
*/
|
|
6317
|
-
Tags?: Record<string, string>;
|
|
6318
|
-
}
|
|
6319
|
-
/**
|
|
6320
|
-
* An AWS resource used in media workflows.
|
|
6321
|
-
* @public
|
|
6322
|
-
*/
|
|
6323
|
-
export interface MediaResource {
|
|
6324
|
-
/**
|
|
6325
|
-
* Placeholder documentation for __listOfMediaResourceNeighbor
|
|
6326
|
-
* @public
|
|
6327
|
-
*/
|
|
6328
|
-
Destinations?: MediaResourceNeighbor[];
|
|
6329
|
-
/**
|
|
6330
|
-
* The logical name of an AWS media resource.
|
|
6331
|
-
* @public
|
|
6332
|
-
*/
|
|
6333
|
-
Name?: string;
|
|
6334
|
-
/**
|
|
6335
|
-
* Placeholder documentation for __listOfMediaResourceNeighbor
|
|
6336
|
-
* @public
|
|
6337
|
-
*/
|
|
6338
|
-
Sources?: MediaResourceNeighbor[];
|
|
6339
|
-
}
|
|
6340
|
-
/**
|
|
6341
|
-
* Represents the latest successful monitor deployment of a signal map.
|
|
6342
|
-
* @public
|
|
6343
|
-
*/
|
|
6344
|
-
export interface SuccessfulMonitorDeployment {
|
|
6345
|
-
/**
|
|
6346
|
-
* URI associated with a signal map's monitor deployment.
|
|
6347
|
-
* @public
|
|
6348
|
-
*/
|
|
6349
|
-
DetailsUri: string | undefined;
|
|
6350
|
-
/**
|
|
6351
|
-
* A signal map's monitor deployment status.
|
|
6352
|
-
* @public
|
|
6353
|
-
*/
|
|
6354
|
-
Status: SignalMapMonitorDeploymentStatus | undefined;
|
|
6355
|
-
}
|
|
6356
|
-
/**
|
|
6357
|
-
* Represents the latest monitor deployment of a signal map.
|
|
6358
|
-
* @public
|
|
6359
|
-
*/
|
|
6360
|
-
export interface MonitorDeployment {
|
|
6361
|
-
/**
|
|
6362
|
-
* URI associated with a signal map's monitor deployment.
|
|
6363
|
-
* @public
|
|
6364
|
-
*/
|
|
6365
|
-
DetailsUri?: string;
|
|
6366
|
-
/**
|
|
6367
|
-
* Error message associated with a failed monitor deployment of a signal map.
|
|
6368
|
-
* @public
|
|
6369
|
-
*/
|
|
6370
|
-
ErrorMessage?: string;
|
|
6371
|
-
/**
|
|
6372
|
-
* A signal map's monitor deployment status.
|
|
6373
|
-
* @public
|
|
6374
|
-
*/
|
|
6375
|
-
Status: SignalMapMonitorDeploymentStatus | undefined;
|
|
6376
|
-
}
|
|
6377
|
-
/**
|
|
6378
|
-
* Placeholder documentation for CreateSignalMapResponse
|
|
6379
|
-
* @public
|
|
6380
|
-
*/
|
|
6381
|
-
export interface CreateSignalMapResponse {
|
|
6382
|
-
/**
|
|
6383
|
-
* A signal map's ARN (Amazon Resource Name)
|
|
6384
|
-
* @public
|
|
6385
|
-
*/
|
|
6386
|
-
Arn?: string;
|
|
6387
|
-
/**
|
|
6388
|
-
* Placeholder documentation for __listOf__stringMin7Max11PatternAws097
|
|
6389
|
-
* @public
|
|
6390
|
-
*/
|
|
6391
|
-
CloudWatchAlarmTemplateGroupIds?: string[];
|
|
6392
|
-
/**
|
|
6393
|
-
* Placeholder documentation for __timestampIso8601
|
|
6394
|
-
* @public
|
|
6395
|
-
*/
|
|
6396
|
-
CreatedAt?: Date;
|
|
6397
|
-
/**
|
|
6398
|
-
* A resource's optional description.
|
|
6399
|
-
* @public
|
|
6400
|
-
*/
|
|
6401
|
-
Description?: string;
|
|
6402
|
-
/**
|
|
6403
|
-
* A top-level supported AWS resource ARN to discovery a signal map from.
|
|
6404
|
-
* @public
|
|
6405
|
-
*/
|
|
6406
|
-
DiscoveryEntryPointArn?: string;
|
|
6407
|
-
/**
|
|
6408
|
-
* Error message associated with a failed creation or failed update attempt of a signal map.
|
|
6409
|
-
* @public
|
|
6410
|
-
*/
|
|
6411
|
-
ErrorMessage?: string;
|
|
6412
|
-
/**
|
|
6413
|
-
* Placeholder documentation for __listOf__stringMin7Max11PatternAws097
|
|
6414
|
-
* @public
|
|
6415
|
-
*/
|
|
6416
|
-
EventBridgeRuleTemplateGroupIds?: string[];
|
|
6417
|
-
/**
|
|
6418
|
-
* A map representing an incomplete AWS media workflow as a graph.
|
|
6419
|
-
* @public
|
|
6420
|
-
*/
|
|
6421
|
-
FailedMediaResourceMap?: Record<string, MediaResource>;
|
|
6422
|
-
/**
|
|
6423
|
-
* A signal map's id.
|
|
6424
|
-
* @public
|
|
6425
|
-
*/
|
|
6426
|
-
Id?: string;
|
|
6427
|
-
/**
|
|
6428
|
-
* Placeholder documentation for __timestampIso8601
|
|
6429
|
-
* @public
|
|
6430
|
-
*/
|
|
6431
|
-
LastDiscoveredAt?: Date;
|
|
6432
|
-
/**
|
|
6433
|
-
* Represents the latest successful monitor deployment of a signal map.
|
|
6434
|
-
* @public
|
|
6435
|
-
*/
|
|
6436
|
-
LastSuccessfulMonitorDeployment?: SuccessfulMonitorDeployment;
|
|
6437
|
-
/**
|
|
6438
|
-
* A map representing an AWS media workflow as a graph.
|
|
6439
|
-
* @public
|
|
6440
|
-
*/
|
|
6441
|
-
MediaResourceMap?: Record<string, MediaResource>;
|
|
6442
|
-
/**
|
|
6443
|
-
* Placeholder documentation for __timestampIso8601
|
|
6444
|
-
* @public
|
|
6445
|
-
*/
|
|
6446
|
-
ModifiedAt?: Date;
|
|
6447
|
-
/**
|
|
6448
|
-
* If true, there are pending monitor changes for this signal map that can be deployed.
|
|
6449
|
-
* @public
|
|
6450
|
-
*/
|
|
6451
|
-
MonitorChangesPendingDeployment?: boolean;
|
|
6452
|
-
/**
|
|
6453
|
-
* Represents the latest monitor deployment of a signal map.
|
|
6454
|
-
* @public
|
|
6455
|
-
*/
|
|
6456
|
-
MonitorDeployment?: MonitorDeployment;
|
|
6457
|
-
/**
|
|
6458
|
-
* A resource's name. Names must be unique within the scope of a resource type in a specific region.
|
|
6459
|
-
* @public
|
|
6460
|
-
*/
|
|
6461
|
-
Name?: string;
|
|
6462
|
-
/**
|
|
6463
|
-
* A signal map's current status which is dependent on its lifecycle actions or associated jobs.
|
|
6464
|
-
* @public
|
|
6465
|
-
*/
|
|
6466
|
-
Status?: SignalMapStatus;
|
|
6467
|
-
/**
|
|
6468
|
-
* Represents the tags associated with a resource.
|
|
6469
|
-
* @public
|
|
6470
|
-
*/
|
|
6471
|
-
Tags?: Record<string, string>;
|
|
6472
|
-
}
|
|
6473
|
-
/**
|
|
6474
|
-
* Placeholder documentation for CreateTagsRequest
|
|
6475
|
-
* @public
|
|
6476
|
-
*/
|
|
6477
|
-
export interface CreateTagsRequest {
|
|
6478
|
-
/**
|
|
6479
|
-
* Placeholder documentation for __string
|
|
6480
|
-
* @public
|
|
6481
|
-
*/
|
|
6482
|
-
ResourceArn: string | undefined;
|
|
6483
|
-
/**
|
|
6484
|
-
* Placeholder documentation for Tags
|
|
6485
|
-
* @public
|
|
6486
|
-
*/
|
|
6487
|
-
Tags?: Record<string, string>;
|
|
6488
|
-
}
|
|
6489
|
-
/**
|
|
6490
|
-
* Placeholder documentation for DeleteChannelRequest
|
|
6491
|
-
* @public
|
|
6492
|
-
*/
|
|
6493
|
-
export interface DeleteChannelRequest {
|
|
6494
|
-
/**
|
|
6495
|
-
* Unique ID of the channel.
|
|
6496
|
-
* @public
|
|
6497
|
-
*/
|
|
6498
|
-
ChannelId: string | undefined;
|
|
6499
|
-
}
|