get_recording_configuration
(**kwargs)¶Gets the recording configuration for the specified ARN.
See also: AWS API Documentation
Request Syntax
response = client.get_recording_configuration(
arn='string'
)
[REQUIRED]
ARN of the recording configuration to be retrieved.
{
'recordingConfiguration': {
'arn': 'string',
'destinationConfiguration': {
's3': {
'bucketName': 'string'
}
},
'name': 'string',
'recordingReconnectWindowSeconds': 123,
'state': 'CREATING'|'CREATE_FAILED'|'ACTIVE',
'tags': {
'string': 'string'
},
'thumbnailConfiguration': {
'recordingMode': 'DISABLED'|'INTERVAL',
'targetIntervalSeconds': 123
}
}
}
Response Structure
Recording-configuration ARN.
A complex type that contains information about where recorded video will be stored.
An S3 destination configuration where recorded videos will be stored.
Location (S3 bucket name) where recorded videos will be stored.
Recording-configuration name. The value does not need to be unique.
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together. Default: 0.
Indicates the current state of the recording configuration. When the state is ACTIVE
, the configuration is ready for recording a channel stream.
Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value)
. See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.
A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
Thumbnail recording mode. Default: INTERVAL
.
The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if recordingMode
is INTERVAL
. Default: 60.
Important: Setting a value fortargetIntervalSeconds
does not guarantee that thumbnails are generated at the specified interval. For thumbnails to be generated at thetargetIntervalSeconds
interval, theIDR/Keyframe
value for the input video must be less than thetargetIntervalSeconds
value. See Amazon IVS Streaming Configuration for information on settingIDR/Keyframe
to the recommended value in video-encoder settings.
Exceptions
IVS.Client.exceptions.ResourceNotFoundException
IVS.Client.exceptions.InternalServerException
IVS.Client.exceptions.AccessDeniedException
IVS.Client.exceptions.ValidationException