create_media_concatenation_pipeline
(**kwargs)¶Creates a media concatenation pipeline.
See also: AWS API Documentation
Request Syntax
response = client.create_media_concatenation_pipeline(
Sources=[
{
'Type': 'MediaCapturePipeline',
'MediaCapturePipelineSourceConfiguration': {
'MediaPipelineArn': 'string',
'ChimeSdkMeetingConfiguration': {
'ArtifactsConfiguration': {
'Audio': {
'State': 'Enabled'
},
'Video': {
'State': 'Enabled'|'Disabled'
},
'Content': {
'State': 'Enabled'|'Disabled'
},
'DataChannel': {
'State': 'Enabled'|'Disabled'
},
'TranscriptionMessages': {
'State': 'Enabled'|'Disabled'
},
'MeetingEvents': {
'State': 'Enabled'|'Disabled'
},
'CompositedVideo': {
'State': 'Enabled'|'Disabled'
}
}
}
}
},
],
Sinks=[
{
'Type': 'S3Bucket',
'S3BucketSinkConfiguration': {
'Destination': 'string'
}
},
],
ClientRequestToken='string',
Tags=[
{
'Key': 'string',
'Value': 'string'
},
]
)
[REQUIRED]
An object that specifies the sources for the media concatenation pipeline.
The source type and media pipeline configuration settings in a configuration object.
The type of concatenation source in a configuration object.
The concatenation settings for the media pipeline in a configuration object.
The media pipeline ARN in the configuration object of a media capture pipeline.
The meeting configuration settings in a media capture pipeline configuration object.
The configuration for the artifacts in an Amazon Chime SDK meeting concatenation.
The configuration for the audio artifacts concatenation.
Enables the name object, where name is the name of the configuration object, such as AudioConcatenation
.
The configuration for the video artifacts concatenation.
Enables or disables the configuration object.
The configuration for the content artifacts concatenation.
Enables or disables the configuration object.
The configuration for the data channel artifacts concatenation.
Enables or disables the configuration object.
The configuration for the transcription messages artifacts concatenation.
Enables or disables the configuration object.
The configuration for the meeting events artifacts concatenation.
Enables or disables the configuration object.
The configuration for the composited video artifacts concatenation.
Enables or disables the configuration object.
[REQUIRED]
An object that specifies the data sinks for the media concatenation pipeline.
The data sink of the configuration object.
The type of data sink in the configuration object.
The configuration settings for an Amazon S3 bucket sink.
The destination URL of the S3 bucket.
The unique identifier for the client request. The token makes the API request idempotent. Use a unique token for each media concatenation pipeline request.
This field is autopopulated if not provided.
The tags associated with the media concatenation pipeline.
A key/value pair that grants users access to meeting resources.
The key half of a tag.
The value half of a tag.
dict
Response Syntax
{
'MediaConcatenationPipeline': {
'MediaPipelineId': 'string',
'MediaPipelineArn': 'string',
'Sources': [
{
'Type': 'MediaCapturePipeline',
'MediaCapturePipelineSourceConfiguration': {
'MediaPipelineArn': 'string',
'ChimeSdkMeetingConfiguration': {
'ArtifactsConfiguration': {
'Audio': {
'State': 'Enabled'
},
'Video': {
'State': 'Enabled'|'Disabled'
},
'Content': {
'State': 'Enabled'|'Disabled'
},
'DataChannel': {
'State': 'Enabled'|'Disabled'
},
'TranscriptionMessages': {
'State': 'Enabled'|'Disabled'
},
'MeetingEvents': {
'State': 'Enabled'|'Disabled'
},
'CompositedVideo': {
'State': 'Enabled'|'Disabled'
}
}
}
}
},
],
'Sinks': [
{
'Type': 'S3Bucket',
'S3BucketSinkConfiguration': {
'Destination': 'string'
}
},
],
'Status': 'Initializing'|'InProgress'|'Failed'|'Stopping'|'Stopped',
'CreatedTimestamp': datetime(2015, 1, 1),
'UpdatedTimestamp': datetime(2015, 1, 1)
}
}
Response Structure
(dict) --
MediaConcatenationPipeline (dict) --
A media concatenation pipeline object, the ID, source type, MediaPipelineARN
, and sink of a media concatenation pipeline object.
MediaPipelineId (string) --
The ID of the media pipeline being concatenated.
MediaPipelineArn (string) --
The ARN of the media pipeline that you specify in the SourceConfiguration
object.
Sources (list) --
The data sources being concatnated.
(dict) --
The source type and media pipeline configuration settings in a configuration object.
Type (string) --
The type of concatenation source in a configuration object.
MediaCapturePipelineSourceConfiguration (dict) --
The concatenation settings for the media pipeline in a configuration object.
MediaPipelineArn (string) --
The media pipeline ARN in the configuration object of a media capture pipeline.
ChimeSdkMeetingConfiguration (dict) --
The meeting configuration settings in a media capture pipeline configuration object.
ArtifactsConfiguration (dict) --
The configuration for the artifacts in an Amazon Chime SDK meeting concatenation.
Audio (dict) --
The configuration for the audio artifacts concatenation.
State (string) --
Enables the name object, where name is the name of the configuration object, such as AudioConcatenation
.
Video (dict) --
The configuration for the video artifacts concatenation.
State (string) --
Enables or disables the configuration object.
Content (dict) --
The configuration for the content artifacts concatenation.
State (string) --
Enables or disables the configuration object.
DataChannel (dict) --
The configuration for the data channel artifacts concatenation.
State (string) --
Enables or disables the configuration object.
TranscriptionMessages (dict) --
The configuration for the transcription messages artifacts concatenation.
State (string) --
Enables or disables the configuration object.
MeetingEvents (dict) --
The configuration for the meeting events artifacts concatenation.
State (string) --
Enables or disables the configuration object.
CompositedVideo (dict) --
The configuration for the composited video artifacts concatenation.
State (string) --
Enables or disables the configuration object.
Sinks (list) --
The data sinks of the concatenation pipeline.
(dict) --
The data sink of the configuration object.
Type (string) --
The type of data sink in the configuration object.
S3BucketSinkConfiguration (dict) --
The configuration settings for an Amazon S3 bucket sink.
Destination (string) --
The destination URL of the S3 bucket.
Status (string) --
The status of the concatenation pipeline.
CreatedTimestamp (datetime) --
The time at which the concatenation pipeline was created.
UpdatedTimestamp (datetime) --
The time at which the concatenation pipeline was last updated.
Exceptions
ChimeSDKMediaPipelines.Client.exceptions.BadRequestException
ChimeSDKMediaPipelines.Client.exceptions.ForbiddenException
ChimeSDKMediaPipelines.Client.exceptions.UnauthorizedClientException
ChimeSDKMediaPipelines.Client.exceptions.ThrottledClientException
ChimeSDKMediaPipelines.Client.exceptions.ResourceLimitExceededException
ChimeSDKMediaPipelines.Client.exceptions.ServiceUnavailableException
ChimeSDKMediaPipelines.Client.exceptions.ServiceFailureException