IVS / Client / batch_get_channel
batch_get_channel¶
- IVS.Client.batch_get_channel(**kwargs)¶
Performs GetChannel on multiple ARNs simultaneously.
See also: AWS API Documentation
Request Syntax
response = client.batch_get_channel( arns=[ 'string', ] )
- Parameters:
arns (list) –
[REQUIRED]
Array of ARNs, one per channel.
(string) –
- Return type:
dict
- Returns:
Response Syntax
{ 'accessControlAllowOrigin': 'string', 'accessControlExposeHeaders': 'string', 'cacheControl': 'string', 'contentSecurityPolicy': 'string', 'strictTransportSecurity': 'string', 'xContentTypeOptions': 'string', 'xFrameOptions': 'string', 'channels': [ { 'arn': 'string', 'name': 'string', 'latencyMode': 'NORMAL'|'LOW', 'type': 'BASIC'|'STANDARD'|'ADVANCED_SD'|'ADVANCED_HD', 'recordingConfigurationArn': 'string', 'ingestEndpoint': 'string', 'playbackUrl': 'string', 'authorized': True|False, 'tags': { 'string': 'string' }, 'insecureIngest': True|False, 'preset': 'HIGHER_BANDWIDTH_DELIVERY'|'CONSTRAINED_BANDWIDTH_DELIVERY', 'srt': { 'endpoint': 'string', 'passphrase': 'string' }, 'playbackRestrictionPolicyArn': 'string', 'multitrackInputConfiguration': { 'enabled': True|False, 'policy': 'ALLOW'|'REQUIRE', 'maximumResolution': 'SD'|'HD'|'FULL_HD' }, 'containerFormat': 'TS'|'FRAGMENTED_MP4', 'adConfigurationArn': 'string' }, ], 'errors': [ { 'arn': 'string', 'code': 'string', 'message': 'string' }, ] }
Response Structure
(dict) –
accessControlAllowOrigin (string) –
See Access-Control-Allow-Origin in the MDN Web Docs.
accessControlExposeHeaders (string) –
See Access-Control-Expose-Headers in the MDN Web Docs.
cacheControl (string) –
See Cache-Control in the MDN Web Docs.
contentSecurityPolicy (string) –
See Content-Security-Policy in the MDN Web Docs.
strictTransportSecurity (string) –
See Strict-Transport-Security in the MDN Web Docs.
xContentTypeOptions (string) –
See X-Content-Type-Options in the MDN Web Docs.
xFrameOptions (string) –
See X-Frame-Options in the MDN Web Docs.
channels (list) –
(dict) –
Object specifying a channel.
arn (string) –
Channel ARN.
name (string) –
Channel name.
latencyMode (string) –
Channel latency mode. Use
NORMALto broadcast and deliver live video up to Full HD. UseLOWfor near-real-time interaction with viewers. Default:LOW.type (string) –
Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable input resolution or bitrate, the stream probably will disconnect immediately. Default:
STANDARD. For details, see Channel Types.recordingConfigurationArn (string) –
Recording-configuration ARN. A valid ARN value here both specifies the ARN and enables recording. Default: “” (empty string, recording is disabled).
ingestEndpoint (string) –
Channel ingest endpoint, part of the definition of an ingest server, used when you set up streaming software.
playbackUrl (string) –
Channel playback URL.
authorized (boolean) –
Whether the channel is private (enabled for playback authorization). Default:
false.tags (dict) –
Tags attached to the resource. Array of 1-50 maps, each of the form
string:string (key:value). See Best practices and strategies in Tagging Amazon Web Services Resources and Tag Editor for details, including restrictions that apply to tags and “Tag naming limits and requirements”; Amazon IVS has no service-specific constraints beyond what is documented there.(string) –
(string) –
insecureIngest (boolean) –
Whether the channel allows insecure RTMP ingest. Default:
false.preset (string) –
Optional transcode preset for the channel. This is selectable only for
ADVANCED_HDandADVANCED_SDchannel types. For those channel types, the defaultpresetisHIGHER_BANDWIDTH_DELIVERY. For other channel types (BASICandSTANDARD),presetis the empty string ("").srt (dict) –
Specifies the endpoint and optional passphrase for streaming with the SRT protocol.
endpoint (string) –
The endpoint to be used when streaming with IVS using the SRT protocol.
passphrase (string) –
Auto-generated passphrase to enable encryption. This field is applicable only if the end user has not enabled the
insecureIngestoption for the channel.
playbackRestrictionPolicyArn (string) –
Playback-restriction-policy ARN. A valid ARN value here both specifies the ARN and enables playback restriction. Default: “” (empty string, no playback restriction policy is applied).
multitrackInputConfiguration (dict) –
Object specifying multitrack input configuration. Default: no multitrack input configuration is specified.
enabled (boolean) –
Indicates whether multitrack input is enabled. Can be set to
trueonly if channel type isSTANDARD. Settingenabledtotruewith any other channel type will cause an exception. Iftrue, thenpolicy,maximumResolution, andcontainerFormatare required, andcontainerFormatmust be set toFRAGMENTED_MP4. Default:false.policy (string) –
Indicates whether multitrack input is allowed or required. Required if
enabledistrue.maximumResolution (string) –
Maximum resolution for multitrack input. Required if
enabledistrue.
containerFormat (string) –
Indicates which content-packaging format is used (MPEG-TS or fMP4). If
multitrackInputConfigurationis specified andenabledistrue, thencontainerFormatis required and must be set toFRAGMENTED_MP4. Otherwise,containerFormatmay be set toTSorFRAGMENTED_MP4. Default:TS.adConfigurationArn (string) –
ARN of the ad configuration associated with the channel.
errors (list) –
Each error object is related to a specific ARN in the request.
(dict) –
Error related to a specific channel, specified by its ARN.
arn (string) –
ARN of an IVS resource; e.g., channel.
code (string) –
Error code.
message (string) –
Error message, determined by the application.
Exceptions
IVS.Client.exceptions.AccessDeniedExceptionIVS.Client.exceptions.ValidationExceptionIVS.Client.exceptions.ServiceUnavailable