Amazon Interactive Video Service RealTime 2020-07-14
- Client: Aws\IVSRealTime\IVSRealTimeClient
- Service ID: ivs-realtime
- Version: 2020-07-14
This page describes the parameters and results for the operations of the Amazon Interactive Video Service RealTime (2020-07-14), and shows how to use the Aws\IVSRealTime\IVSRealTimeClient object to call the described operations. This documentation is specific to the 2020-07-14 API version of the service.
Operation Summary
Each of the following operations can be created from a client using
$client->getCommand('CommandName')
, where "CommandName" is the
name of one of the following operations. Note: a command is a value that
encapsulates an operation and the parameters used to create an HTTP request.
You can also create and send a command immediately using the magic methods
available on a client object: $client->commandName(/* parameters */)
.
You can send the command asynchronously (returning a promise) by appending the
word "Async" to the operation name: $client->commandNameAsync(/* parameters */)
.
- CreateEncoderConfiguration ( array $params = [] )
- Creates an EncoderConfiguration object.
- CreateIngestConfiguration ( array $params = [] )
- Creates a new IngestConfiguration resource, used to specify the ingest protocol for a stage.
- CreateParticipantToken ( array $params = [] )
- Creates an additional token for a specified stage.
- CreateStage ( array $params = [] )
- Creates a new stage (and optionally participant tokens).
- CreateStorageConfiguration ( array $params = [] )
- Creates a new storage configuration, used to enable recording to Amazon S3.
- DeleteEncoderConfiguration ( array $params = [] )
- Deletes an EncoderConfiguration resource.
- DeleteIngestConfiguration ( array $params = [] )
- Deletes a specified IngestConfiguration, so it can no longer be used to broadcast.
- DeletePublicKey ( array $params = [] )
- Deletes the specified public key used to sign stage participant tokens.
- DeleteStage ( array $params = [] )
- Shuts down and deletes the specified stage (disconnecting all participants).
- DeleteStorageConfiguration ( array $params = [] )
- Deletes the storage configuration for the specified ARN.
- DisconnectParticipant ( array $params = [] )
- Disconnects a specified participant from a specified stage.
- GetComposition ( array $params = [] )
- Get information about the specified Composition resource.
- GetEncoderConfiguration ( array $params = [] )
- Gets information about the specified EncoderConfiguration resource.
- GetIngestConfiguration ( array $params = [] )
- Gets information about the specified IngestConfiguration.
- GetParticipant ( array $params = [] )
- Gets information about the specified participant token.
- GetPublicKey ( array $params = [] )
- Gets information for the specified public key.
- GetStage ( array $params = [] )
- Gets information for the specified stage.
- GetStageSession ( array $params = [] )
- Gets information for the specified stage session.
- GetStorageConfiguration ( array $params = [] )
- Gets the storage configuration for the specified ARN.
- ImportPublicKey ( array $params = [] )
- Import a public key to be used for signing stage participant tokens.
- ListCompositions ( array $params = [] )
- Gets summary information about all Compositions in your account, in the AWS region where the API request is processed.
- ListEncoderConfigurations ( array $params = [] )
- Gets summary information about all EncoderConfigurations in your account, in the AWS region where the API request is processed.
- ListIngestConfigurations ( array $params = [] )
- Lists all IngestConfigurations in your account, in the AWS region where the API request is processed.
- ListParticipantEvents ( array $params = [] )
- Lists events for a specified participant that occurred during a specified stage session.
- ListParticipants ( array $params = [] )
- Lists all participants in a specified stage session.
- ListPublicKeys ( array $params = [] )
- Gets summary information about all public keys in your account, in the AWS region where the API request is processed.
- ListStageSessions ( array $params = [] )
- Gets all sessions for a specified stage.
- ListStages ( array $params = [] )
- Gets summary information about all stages in your account, in the AWS region where the API request is processed.
- ListStorageConfigurations ( array $params = [] )
- Gets summary information about all storage configurations in your account, in the AWS region where the API request is processed.
- ListTagsForResource ( array $params = [] )
- Gets information about AWS tags for the specified ARN.
- StartComposition ( array $params = [] )
- Starts a Composition from a stage based on the configuration provided in the request.
- StopComposition ( array $params = [] )
- Stops and deletes a Composition resource.
- TagResource ( array $params = [] )
- Adds or updates tags for the AWS resource with the specified ARN.
- UntagResource ( array $params = [] )
- Removes tags from the resource with the specified ARN.
- UpdateIngestConfiguration ( array $params = [] )
- Updates a specified IngestConfiguration.
- UpdateStage ( array $params = [] )
- Updates a stage’s configuration.
Paginators
Paginators handle automatically iterating over paginated API results. Paginators are associated with specific API operations, and they accept the parameters that the corresponding API operation accepts. You can get a paginator from a client class using getPaginator($paginatorName, $operationParameters). This client supports the following paginators:
- ListCompositions
- ListEncoderConfigurations
- ListIngestConfigurations
- ListParticipantEvents
- ListParticipants
- ListPublicKeys
- ListStageSessions
- ListStages
- ListStorageConfigurations
Operations
CreateEncoderConfiguration
$result = $client->createEncoderConfiguration
([/* ... */]); $promise = $client->createEncoderConfigurationAsync
([/* ... */]);
Creates an EncoderConfiguration object.
Parameter Syntax
$result = $client->createEncoderConfiguration([ 'name' => '<string>', 'tags' => ['<string>', ...], 'video' => [ 'bitrate' => <integer>, 'framerate' => <float>, 'height' => <integer>, 'width' => <integer>, ], ]);
Parameter Details
Members
- name
-
- Type: string
Optional name to identify the resource.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there. - video
-
- Type: Video structure
Video configuration. Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps.
Result Syntax
[ 'encoderConfiguration' => [ 'arn' => '<string>', 'name' => '<string>', 'tags' => ['<string>', ...], 'video' => [ 'bitrate' => <integer>, 'framerate' => <float>, 'height' => <integer>, 'width' => <integer>, ], ], ]
Result Details
Members
- encoderConfiguration
-
- Type: EncoderConfiguration structure
The EncoderConfiguration that was created.
Errors
CreateIngestConfiguration
$result = $client->createIngestConfiguration
([/* ... */]); $promise = $client->createIngestConfigurationAsync
([/* ... */]);
Creates a new IngestConfiguration resource, used to specify the ingest protocol for a stage.
Parameter Syntax
$result = $client->createIngestConfiguration([ 'attributes' => ['<string>', ...], 'ingestProtocol' => 'RTMP|RTMPS', // REQUIRED 'insecureIngest' => true || false, 'name' => '<string>', 'stageArn' => '<string>', 'tags' => ['<string>', ...], 'userId' => '<string>', ]);
Parameter Details
Members
- attributes
-
- Type: Associative array of custom strings keys (String) to strings
Application-provided attributes to store in the IngestConfiguration and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
- ingestProtocol
-
- Required: Yes
- Type: string
Type of ingest protocol that the user employs to broadcast. If this is set to
RTMP
,insecureIngest
must be set totrue
. - insecureIngest
-
- Type: boolean
Whether the stage allows insecure RTMP ingest. This must be set to
true
, ifingestProtocol
is set toRTMP
. Default:false
. - name
-
- Type: string
Optional name that can be specified for the IngestConfiguration being created.
- stageArn
-
- Type: string
ARN of the stage with which the IngestConfiguration is associated.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there. - userId
-
- Type: string
Customer-assigned name to help identify the participant using the IngestConfiguration; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
Result Syntax
[ 'ingestConfiguration' => [ 'arn' => '<string>', 'attributes' => ['<string>', ...], 'ingestProtocol' => 'RTMP|RTMPS', 'name' => '<string>', 'participantId' => '<string>', 'stageArn' => '<string>', 'state' => 'ACTIVE|INACTIVE', 'streamKey' => '<string>', 'tags' => ['<string>', ...], 'userId' => '<string>', ], ]
Result Details
Members
- ingestConfiguration
-
- Type: IngestConfiguration structure
The IngestConfiguration that was created.
Errors
CreateParticipantToken
$result = $client->createParticipantToken
([/* ... */]); $promise = $client->createParticipantTokenAsync
([/* ... */]);
Creates an additional token for a specified stage. This can be done after stage creation or when tokens expire. Tokens always are scoped to the stage for which they are created.
Encryption keys are owned by Amazon IVS and never used directly by your application.
Parameter Syntax
$result = $client->createParticipantToken([ 'attributes' => ['<string>', ...], 'capabilities' => ['<string>', ...], 'duration' => <integer>, 'stageArn' => '<string>', // REQUIRED 'userId' => '<string>', ]);
Parameter Details
Members
- attributes
-
- Type: Associative array of custom strings keys (String) to strings
Application-provided attributes to encode into the token and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
- capabilities
-
- Type: Array of strings
Set of capabilities that the user is allowed to perform in the stage. Default:
PUBLISH, SUBSCRIBE
. - duration
-
- Type: int
Duration (in minutes), after which the token expires. Default: 720 (12 hours).
- stageArn
-
- Required: Yes
- Type: string
ARN of the stage to which this token is scoped.
- userId
-
- Type: string
Name that can be specified to help identify the token. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
Result Syntax
[ 'participantToken' => [ 'attributes' => ['<string>', ...], 'capabilities' => ['<string>', ...], 'duration' => <integer>, 'expirationTime' => <DateTime>, 'participantId' => '<string>', 'token' => '<string>', 'userId' => '<string>', ], ]
Result Details
Members
- participantToken
-
- Type: ParticipantToken structure
The participant token that was created.
Errors
CreateStage
$result = $client->createStage
([/* ... */]); $promise = $client->createStageAsync
([/* ... */]);
Creates a new stage (and optionally participant tokens).
Parameter Syntax
$result = $client->createStage([ 'autoParticipantRecordingConfiguration' => [ 'mediaTypes' => ['<string>', ...], 'storageConfigurationArn' => '<string>', // REQUIRED ], 'name' => '<string>', 'participantTokenConfigurations' => [ [ 'attributes' => ['<string>', ...], 'capabilities' => ['<string>', ...], 'duration' => <integer>, 'userId' => '<string>', ], // ... ], 'tags' => ['<string>', ...], ]);
Parameter Details
Members
- autoParticipantRecordingConfiguration
-
- Type: AutoParticipantRecordingConfiguration structure
Configuration object for individual participant recording, to attach to the new stage.
- name
-
- Type: string
Optional name that can be specified for the stage being created.
- participantTokenConfigurations
-
- Type: Array of ParticipantTokenConfiguration structures
Array of participant token configuration objects to attach to the new stage.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Result Syntax
[ 'participantTokens' => [ [ 'attributes' => ['<string>', ...], 'capabilities' => ['<string>', ...], 'duration' => <integer>, 'expirationTime' => <DateTime>, 'participantId' => '<string>', 'token' => '<string>', 'userId' => '<string>', ], // ... ], 'stage' => [ 'activeSessionId' => '<string>', 'arn' => '<string>', 'autoParticipantRecordingConfiguration' => [ 'mediaTypes' => ['<string>', ...], 'storageConfigurationArn' => '<string>', ], 'endpoints' => [ 'events' => '<string>', 'rtmp' => '<string>', 'rtmps' => '<string>', 'whip' => '<string>', ], 'name' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- participantTokens
-
- Type: Array of ParticipantToken structures
Participant tokens attached to the stage. These correspond to the
participants
in the request. - stage
-
- Type: Stage structure
The stage that was created.
Errors
CreateStorageConfiguration
$result = $client->createStorageConfiguration
([/* ... */]); $promise = $client->createStorageConfigurationAsync
([/* ... */]);
Creates a new storage configuration, used to enable recording to Amazon S3. When a StorageConfiguration is created, IVS will modify the S3 bucketPolicy of the provided bucket. This will ensure that IVS has sufficient permissions to write content to the provided bucket.
Parameter Syntax
$result = $client->createStorageConfiguration([ 'name' => '<string>', 's3' => [ // REQUIRED 'bucketName' => '<string>', // REQUIRED ], 'tags' => ['<string>', ...], ]);
Parameter Details
Members
- name
-
- Type: string
Storage configuration name. The value does not need to be unique.
- s3
-
- Required: Yes
- Type: S3StorageConfiguration structure
A complex type that contains a storage configuration for where recorded video will be stored.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Result Syntax
[ 'storageConfiguration' => [ 'arn' => '<string>', 'name' => '<string>', 's3' => [ 'bucketName' => '<string>', ], 'tags' => ['<string>', ...], ], ]
Result Details
Members
- storageConfiguration
-
- Type: StorageConfiguration structure
The StorageConfiguration that was created.
Errors
DeleteEncoderConfiguration
$result = $client->deleteEncoderConfiguration
([/* ... */]); $promise = $client->deleteEncoderConfigurationAsync
([/* ... */]);
Deletes an EncoderConfiguration resource. Ensures that no Compositions are using this template; otherwise, returns an error.
Parameter Syntax
$result = $client->deleteEncoderConfiguration([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the EncoderConfiguration.
Result Syntax
[]
Result Details
Errors
DeleteIngestConfiguration
$result = $client->deleteIngestConfiguration
([/* ... */]); $promise = $client->deleteIngestConfigurationAsync
([/* ... */]);
Deletes a specified IngestConfiguration, so it can no longer be used to broadcast. An IngestConfiguration cannot be deleted if the publisher is actively streaming to a stage, unless force
is set to true
.
Parameter Syntax
$result = $client->deleteIngestConfiguration([ 'arn' => '<string>', // REQUIRED 'force' => true || false, ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the IngestConfiguration.
- force
-
- Type: boolean
Optional field to force deletion of the IngestConfiguration. If this is set to
true
when a participant is actively publishing, the participant is disconnected from the stage, followed by deletion of the IngestConfiguration. Default:false
.
Result Syntax
[]
Result Details
Errors
DeletePublicKey
$result = $client->deletePublicKey
([/* ... */]); $promise = $client->deletePublicKeyAsync
([/* ... */]);
Deletes the specified public key used to sign stage participant tokens. This invalidates future participant tokens generated using the key pair’s private key.
Parameter Syntax
$result = $client->deletePublicKey([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the public key to be deleted.
Result Syntax
[]
Result Details
Errors
DeleteStage
$result = $client->deleteStage
([/* ... */]); $promise = $client->deleteStageAsync
([/* ... */]);
Shuts down and deletes the specified stage (disconnecting all participants). This operation also removes the stageArn
from the associated IngestConfiguration, if there are participants using the IngestConfiguration to publish to the stage.
Parameter Syntax
$result = $client->deleteStage([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the stage to be deleted.
Result Syntax
[]
Result Details
Errors
DeleteStorageConfiguration
$result = $client->deleteStorageConfiguration
([/* ... */]); $promise = $client->deleteStorageConfigurationAsync
([/* ... */]);
Deletes the storage configuration for the specified ARN.
If you try to delete a storage configuration that is used by a Composition, you will get an error (409 ConflictException). To avoid this, for all Compositions that reference the storage configuration, first use StopComposition and wait for it to complete, then use DeleteStorageConfiguration.
Parameter Syntax
$result = $client->deleteStorageConfiguration([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the storage configuration to be deleted.
Result Syntax
[]
Result Details
Errors
DisconnectParticipant
$result = $client->disconnectParticipant
([/* ... */]); $promise = $client->disconnectParticipantAsync
([/* ... */]);
Disconnects a specified participant from a specified stage. If the participant is publishing using an IngestConfiguration, DisconnectParticipant also updates the stageArn
in the IngestConfiguration to be an empty string.
Parameter Syntax
$result = $client->disconnectParticipant([ 'participantId' => '<string>', // REQUIRED 'reason' => '<string>', 'stageArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- participantId
-
- Required: Yes
- Type: string
Identifier of the participant to be disconnected. IVS assigns this; it is returned by CreateParticipantToken (for streams using WebRTC ingest) or CreateIngestConfiguration (for streams using RTMP ingest).
- reason
-
- Type: string
Description of why this participant is being disconnected.
- stageArn
-
- Required: Yes
- Type: string
ARN of the stage to which the participant is attached.
Result Syntax
[]
Result Details
Errors
GetComposition
$result = $client->getComposition
([/* ... */]); $promise = $client->getCompositionAsync
([/* ... */]);
Get information about the specified Composition resource.
Parameter Syntax
$result = $client->getComposition([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the Composition resource.
Result Syntax
[ 'composition' => [ 'arn' => '<string>', 'destinations' => [ [ 'configuration' => [ 'channel' => [ 'channelArn' => '<string>', 'encoderConfigurationArn' => '<string>', ], 'name' => '<string>', 's3' => [ 'encoderConfigurationArns' => ['<string>', ...], 'recordingConfiguration' => [ 'format' => 'HLS', ], 'storageConfigurationArn' => '<string>', ], ], 'detail' => [ 's3' => [ 'recordingPrefix' => '<string>', ], ], 'endTime' => <DateTime>, 'id' => '<string>', 'startTime' => <DateTime>, 'state' => 'STARTING|ACTIVE|STOPPING|RECONNECTING|FAILED|STOPPED', ], // ... ], 'endTime' => <DateTime>, 'layout' => [ 'grid' => [ 'featuredParticipantAttribute' => '<string>', 'gridGap' => <integer>, 'omitStoppedVideo' => true || false, 'videoAspectRatio' => 'AUTO|VIDEO|SQUARE|PORTRAIT', 'videoFillMode' => 'FILL|COVER|CONTAIN', ], 'pip' => [ 'featuredParticipantAttribute' => '<string>', 'gridGap' => <integer>, 'omitStoppedVideo' => true || false, 'pipBehavior' => 'STATIC|DYNAMIC', 'pipHeight' => <integer>, 'pipOffset' => <integer>, 'pipParticipantAttribute' => '<string>', 'pipPosition' => 'TOP_LEFT|TOP_RIGHT|BOTTOM_LEFT|BOTTOM_RIGHT', 'pipWidth' => <integer>, 'videoFillMode' => 'FILL|COVER|CONTAIN', ], ], 'stageArn' => '<string>', 'startTime' => <DateTime>, 'state' => 'STARTING|ACTIVE|STOPPING|FAILED|STOPPED', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- composition
-
- Type: Composition structure
The Composition that was returned.
Errors
GetEncoderConfiguration
$result = $client->getEncoderConfiguration
([/* ... */]); $promise = $client->getEncoderConfigurationAsync
([/* ... */]);
Gets information about the specified EncoderConfiguration resource.
Parameter Syntax
$result = $client->getEncoderConfiguration([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the EncoderConfiguration resource.
Result Syntax
[ 'encoderConfiguration' => [ 'arn' => '<string>', 'name' => '<string>', 'tags' => ['<string>', ...], 'video' => [ 'bitrate' => <integer>, 'framerate' => <float>, 'height' => <integer>, 'width' => <integer>, ], ], ]
Result Details
Members
- encoderConfiguration
-
- Type: EncoderConfiguration structure
The EncoderConfiguration that was returned.
Errors
GetIngestConfiguration
$result = $client->getIngestConfiguration
([/* ... */]); $promise = $client->getIngestConfigurationAsync
([/* ... */]);
Gets information about the specified IngestConfiguration.
Parameter Syntax
$result = $client->getIngestConfiguration([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the ingest for which the information is to be retrieved.
Result Syntax
[ 'ingestConfiguration' => [ 'arn' => '<string>', 'attributes' => ['<string>', ...], 'ingestProtocol' => 'RTMP|RTMPS', 'name' => '<string>', 'participantId' => '<string>', 'stageArn' => '<string>', 'state' => 'ACTIVE|INACTIVE', 'streamKey' => '<string>', 'tags' => ['<string>', ...], 'userId' => '<string>', ], ]
Result Details
Members
- ingestConfiguration
-
- Type: IngestConfiguration structure
The IngestConfiguration that was returned.
Errors
GetParticipant
$result = $client->getParticipant
([/* ... */]); $promise = $client->getParticipantAsync
([/* ... */]);
Gets information about the specified participant token.
Parameter Syntax
$result = $client->getParticipant([ 'participantId' => '<string>', // REQUIRED 'sessionId' => '<string>', // REQUIRED 'stageArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- participantId
-
- Required: Yes
- Type: string
Unique identifier for the participant. This is assigned by IVS and returned by CreateParticipantToken.
- sessionId
-
- Required: Yes
- Type: string
ID of a session within the stage.
- stageArn
-
- Required: Yes
- Type: string
Stage ARN.
Result Syntax
[ 'participant' => [ 'attributes' => ['<string>', ...], 'browserName' => '<string>', 'browserVersion' => '<string>', 'firstJoinTime' => <DateTime>, 'ispName' => '<string>', 'osName' => '<string>', 'osVersion' => '<string>', 'participantId' => '<string>', 'protocol' => 'UNKNOWN|WHIP|RTMP|RTMPS', 'published' => true || false, 'recordingS3BucketName' => '<string>', 'recordingS3Prefix' => '<string>', 'recordingState' => 'STARTING|ACTIVE|STOPPING|STOPPED|FAILED|DISABLED', 'sdkVersion' => '<string>', 'state' => 'CONNECTED|DISCONNECTED', 'userId' => '<string>', ], ]
Result Details
Members
- participant
-
- Type: Participant structure
The participant that is returned.
Errors
GetPublicKey
$result = $client->getPublicKey
([/* ... */]); $promise = $client->getPublicKeyAsync
([/* ... */]);
Gets information for the specified public key.
Parameter Syntax
$result = $client->getPublicKey([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the public key for which the information is to be retrieved.
Result Syntax
[ 'publicKey' => [ 'arn' => '<string>', 'fingerprint' => '<string>', 'name' => '<string>', 'publicKeyMaterial' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- publicKey
-
- Type: PublicKey structure
The public key that is returned.
Errors
GetStage
$result = $client->getStage
([/* ... */]); $promise = $client->getStageAsync
([/* ... */]);
Gets information for the specified stage.
Parameter Syntax
$result = $client->getStage([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the stage for which the information is to be retrieved.
Result Syntax
[ 'stage' => [ 'activeSessionId' => '<string>', 'arn' => '<string>', 'autoParticipantRecordingConfiguration' => [ 'mediaTypes' => ['<string>', ...], 'storageConfigurationArn' => '<string>', ], 'endpoints' => [ 'events' => '<string>', 'rtmp' => '<string>', 'rtmps' => '<string>', 'whip' => '<string>', ], 'name' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- stage
-
- Type: Stage structure
The stage that is returned.
Errors
GetStageSession
$result = $client->getStageSession
([/* ... */]); $promise = $client->getStageSessionAsync
([/* ... */]);
Gets information for the specified stage session.
Parameter Syntax
$result = $client->getStageSession([ 'sessionId' => '<string>', // REQUIRED 'stageArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- sessionId
-
- Required: Yes
- Type: string
ID of a session within the stage.
- stageArn
-
- Required: Yes
- Type: string
ARN of the stage for which the information is to be retrieved.
Result Syntax
[ 'stageSession' => [ 'endTime' => <DateTime>, 'sessionId' => '<string>', 'startTime' => <DateTime>, ], ]
Result Details
Members
- stageSession
-
- Type: StageSession structure
The stage session that is returned.
Errors
GetStorageConfiguration
$result = $client->getStorageConfiguration
([/* ... */]); $promise = $client->getStorageConfigurationAsync
([/* ... */]);
Gets the storage configuration for the specified ARN.
Parameter Syntax
$result = $client->getStorageConfiguration([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the storage configuration to be retrieved.
Result Syntax
[ 'storageConfiguration' => [ 'arn' => '<string>', 'name' => '<string>', 's3' => [ 'bucketName' => '<string>', ], 'tags' => ['<string>', ...], ], ]
Result Details
Members
- storageConfiguration
-
- Type: StorageConfiguration structure
The StorageConfiguration that was returned.
Errors
ImportPublicKey
$result = $client->importPublicKey
([/* ... */]); $promise = $client->importPublicKeyAsync
([/* ... */]);
Import a public key to be used for signing stage participant tokens.
Parameter Syntax
$result = $client->importPublicKey([ 'name' => '<string>', 'publicKeyMaterial' => '<string>', // REQUIRED 'tags' => ['<string>', ...], ]);
Parameter Details
Members
- name
-
- Type: string
Name of the public key to be imported.
- publicKeyMaterial
-
- Required: Yes
- Type: string
The content of the public key to be imported.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Result Syntax
[ 'publicKey' => [ 'arn' => '<string>', 'fingerprint' => '<string>', 'name' => '<string>', 'publicKeyMaterial' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- publicKey
-
- Type: PublicKey structure
The public key that was imported.
Errors
ListCompositions
$result = $client->listCompositions
([/* ... */]); $promise = $client->listCompositionsAsync
([/* ... */]);
Gets summary information about all Compositions in your account, in the AWS region where the API request is processed.
Parameter Syntax
$result = $client->listCompositions([ 'filterByEncoderConfigurationArn' => '<string>', 'filterByStageArn' => '<string>', 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- filterByEncoderConfigurationArn
-
- Type: string
Filters the Composition list to match the specified EncoderConfiguration attached to at least one of its output.
- filterByStageArn
-
- Type: string
Filters the Composition list to match the specified Stage ARN.
- maxResults
-
- Type: int
Maximum number of results to return. Default: 100.
- nextToken
-
- Type: string
The first Composition to retrieve. This is used for pagination; see the
nextToken
response field.
Result Syntax
[ 'compositions' => [ [ 'arn' => '<string>', 'destinations' => [ [ 'endTime' => <DateTime>, 'id' => '<string>', 'startTime' => <DateTime>, 'state' => 'STARTING|ACTIVE|STOPPING|RECONNECTING|FAILED|STOPPED', ], // ... ], 'endTime' => <DateTime>, 'stageArn' => '<string>', 'startTime' => <DateTime>, 'state' => 'STARTING|ACTIVE|STOPPING|FAILED|STOPPED', 'tags' => ['<string>', ...], ], // ... ], 'nextToken' => '<string>', ]
Result Details
Members
- compositions
-
- Required: Yes
- Type: Array of CompositionSummary structures
List of the matching Compositions (summary information only).
- nextToken
-
- Type: string
If there are more compositions than
maxResults
, usenextToken
in the request to get the next set.
Errors
ListEncoderConfigurations
$result = $client->listEncoderConfigurations
([/* ... */]); $promise = $client->listEncoderConfigurationsAsync
([/* ... */]);
Gets summary information about all EncoderConfigurations in your account, in the AWS region where the API request is processed.
Parameter Syntax
$result = $client->listEncoderConfigurations([ 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- maxResults
-
- Type: int
Maximum number of results to return. Default: 100.
- nextToken
-
- Type: string
The first encoder configuration to retrieve. This is used for pagination; see the
nextToken
response field.
Result Syntax
[ 'encoderConfigurations' => [ [ 'arn' => '<string>', 'name' => '<string>', 'tags' => ['<string>', ...], ], // ... ], 'nextToken' => '<string>', ]
Result Details
Members
- encoderConfigurations
-
- Required: Yes
- Type: Array of EncoderConfigurationSummary structures
List of the matching EncoderConfigurations (summary information only).
- nextToken
-
- Type: string
If there are more encoder configurations than
maxResults
, usenextToken
in the request to get the next set.
Errors
ListIngestConfigurations
$result = $client->listIngestConfigurations
([/* ... */]); $promise = $client->listIngestConfigurationsAsync
([/* ... */]);
Lists all IngestConfigurations in your account, in the AWS region where the API request is processed.
Parameter Syntax
$result = $client->listIngestConfigurations([ 'filterByStageArn' => '<string>', 'filterByState' => 'ACTIVE|INACTIVE', 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- filterByStageArn
-
- Type: string
Filters the response list to match the specified stage ARN. Only one filter (by stage ARN or by state) can be used at a time.
- filterByState
-
- Type: string
Filters the response list to match the specified state. Only one filter (by stage ARN or by state) can be used at a time.
- maxResults
-
- Type: int
Maximum number of results to return. Default: 50.
- nextToken
-
- Type: string
The first IngestConfiguration to retrieve. This is used for pagination; see the
nextToken
response field.
Result Syntax
[ 'ingestConfigurations' => [ [ 'arn' => '<string>', 'ingestProtocol' => 'RTMP|RTMPS', 'name' => '<string>', 'participantId' => '<string>', 'stageArn' => '<string>', 'state' => 'ACTIVE|INACTIVE', 'userId' => '<string>', ], // ... ], 'nextToken' => '<string>', ]
Result Details
Members
- ingestConfigurations
-
- Required: Yes
- Type: Array of IngestConfigurationSummary structures
List of the matching ingest configurations (summary information only).
- nextToken
-
- Type: string
If there are more IngestConfigurations than
maxResults
, usenextToken
in the request to get the next set.
Errors
ListParticipantEvents
$result = $client->listParticipantEvents
([/* ... */]); $promise = $client->listParticipantEventsAsync
([/* ... */]);
Lists events for a specified participant that occurred during a specified stage session.
Parameter Syntax
$result = $client->listParticipantEvents([ 'maxResults' => <integer>, 'nextToken' => '<string>', 'participantId' => '<string>', // REQUIRED 'sessionId' => '<string>', // REQUIRED 'stageArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- maxResults
-
- Type: int
Maximum number of results to return. Default: 50.
- nextToken
-
- Type: string
The first participant event to retrieve. This is used for pagination; see the
nextToken
response field. - participantId
-
- Required: Yes
- Type: string
Unique identifier for this participant. This is assigned by IVS and returned by CreateParticipantToken.
- sessionId
-
- Required: Yes
- Type: string
ID of a session within the stage.
- stageArn
-
- Required: Yes
- Type: string
Stage ARN.
Result Syntax
[ 'events' => [ [ 'errorCode' => 'INSUFFICIENT_CAPABILITIES|QUOTA_EXCEEDED|PUBLISHER_NOT_FOUND|BITRATE_EXCEEDED|RESOLUTION_EXCEEDED|STREAM_DURATION_EXCEEDED|INVALID_AUDIO_CODEC|INVALID_VIDEO_CODEC|INVALID_PROTOCOL|INVALID_STREAM_KEY|REUSE_OF_STREAM_KEY|B_FRAME_PRESENT|INVALID_INPUT|INTERNAL_SERVER_EXCEPTION', 'eventTime' => <DateTime>, 'name' => 'JOINED|LEFT|PUBLISH_STARTED|PUBLISH_STOPPED|SUBSCRIBE_STARTED|SUBSCRIBE_STOPPED|PUBLISH_ERROR|SUBSCRIBE_ERROR|JOIN_ERROR', 'participantId' => '<string>', 'remoteParticipantId' => '<string>', ], // ... ], 'nextToken' => '<string>', ]
Result Details
Members
- events
-
- Required: Yes
- Type: Array of Event structures
List of the matching events.
- nextToken
-
- Type: string
If there are more events than
maxResults
, usenextToken
in the request to get the next set.
Errors
ListParticipants
$result = $client->listParticipants
([/* ... */]); $promise = $client->listParticipantsAsync
([/* ... */]);
Lists all participants in a specified stage session.
Parameter Syntax
$result = $client->listParticipants([ 'filterByPublished' => true || false, 'filterByRecordingState' => 'STARTING|ACTIVE|STOPPING|STOPPED|FAILED', 'filterByState' => 'CONNECTED|DISCONNECTED', 'filterByUserId' => '<string>', 'maxResults' => <integer>, 'nextToken' => '<string>', 'sessionId' => '<string>', // REQUIRED 'stageArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- filterByPublished
-
- Type: boolean
Filters the response list to only show participants who published during the stage session. Only one of
filterByUserId
,filterByPublished
,filterByState
, orfilterByRecordingState
can be provided per request. - filterByRecordingState
-
- Type: string
Filters the response list to only show participants with the specified recording state. Only one of
filterByUserId
,filterByPublished
,filterByState
, orfilterByRecordingState
can be provided per request. - filterByState
-
- Type: string
Filters the response list to only show participants in the specified state. Only one of
filterByUserId
,filterByPublished
,filterByState
, orfilterByRecordingState
can be provided per request. - filterByUserId
-
- Type: string
Filters the response list to match the specified user ID. Only one of
filterByUserId
,filterByPublished
,filterByState
, orfilterByRecordingState
can be provided per request. AuserId
is a customer-assigned name to help identify the token; this can be used to link a participant to a user in the customer’s own systems. - maxResults
-
- Type: int
Maximum number of results to return. Default: 50.
- nextToken
-
- Type: string
The first participant to retrieve. This is used for pagination; see the
nextToken
response field. - sessionId
-
- Required: Yes
- Type: string
ID of the session within the stage.
- stageArn
-
- Required: Yes
- Type: string
Stage ARN.
Result Syntax
[ 'nextToken' => '<string>', 'participants' => [ [ 'firstJoinTime' => <DateTime>, 'participantId' => '<string>', 'published' => true || false, 'recordingState' => 'STARTING|ACTIVE|STOPPING|STOPPED|FAILED|DISABLED', 'state' => 'CONNECTED|DISCONNECTED', 'userId' => '<string>', ], // ... ], ]
Result Details
Members
- nextToken
-
- Type: string
If there are more participants than
maxResults
, usenextToken
in the request to get the next set. - participants
-
- Required: Yes
- Type: Array of ParticipantSummary structures
List of the matching participants (summary information only).
Errors
ListPublicKeys
$result = $client->listPublicKeys
([/* ... */]); $promise = $client->listPublicKeysAsync
([/* ... */]);
Gets summary information about all public keys in your account, in the AWS region where the API request is processed.
Parameter Syntax
$result = $client->listPublicKeys([ 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- maxResults
-
- Type: int
Maximum number of results to return. Default: 50.
- nextToken
-
- Type: string
The first public key to retrieve. This is used for pagination; see the
nextToken
response field.
Result Syntax
[ 'nextToken' => '<string>', 'publicKeys' => [ [ 'arn' => '<string>', 'name' => '<string>', 'tags' => ['<string>', ...], ], // ... ], ]
Result Details
Members
- nextToken
-
- Type: string
If there are more public keys than
maxResults
, usenextToken
in the request to get the next set. - publicKeys
-
- Required: Yes
- Type: Array of PublicKeySummary structures
List of the matching public keys (summary information only).
Errors
ListStageSessions
$result = $client->listStageSessions
([/* ... */]); $promise = $client->listStageSessionsAsync
([/* ... */]);
Gets all sessions for a specified stage.
Parameter Syntax
$result = $client->listStageSessions([ 'maxResults' => <integer>, 'nextToken' => '<string>', 'stageArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- maxResults
-
- Type: int
Maximum number of results to return. Default: 50.
- nextToken
-
- Type: string
The first stage session to retrieve. This is used for pagination; see the
nextToken
response field. - stageArn
-
- Required: Yes
- Type: string
Stage ARN.
Result Syntax
[ 'nextToken' => '<string>', 'stageSessions' => [ [ 'endTime' => <DateTime>, 'sessionId' => '<string>', 'startTime' => <DateTime>, ], // ... ], ]
Result Details
Members
- nextToken
-
- Type: string
If there are more stage sessions than
maxResults
, usenextToken
in the request to get the next set. - stageSessions
-
- Required: Yes
- Type: Array of StageSessionSummary structures
List of matching stage sessions.
Errors
ListStages
$result = $client->listStages
([/* ... */]); $promise = $client->listStagesAsync
([/* ... */]);
Gets summary information about all stages in your account, in the AWS region where the API request is processed.
Parameter Syntax
$result = $client->listStages([ 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- maxResults
-
- Type: int
Maximum number of results to return. Default: 50.
- nextToken
-
- Type: string
The first stage to retrieve. This is used for pagination; see the
nextToken
response field.
Result Syntax
[ 'nextToken' => '<string>', 'stages' => [ [ 'activeSessionId' => '<string>', 'arn' => '<string>', 'name' => '<string>', 'tags' => ['<string>', ...], ], // ... ], ]
Result Details
Members
- nextToken
-
- Type: string
If there are more stages than
maxResults
, usenextToken
in the request to get the next set. - stages
-
- Required: Yes
- Type: Array of StageSummary structures
List of the matching stages (summary information only).
Errors
ListStorageConfigurations
$result = $client->listStorageConfigurations
([/* ... */]); $promise = $client->listStorageConfigurationsAsync
([/* ... */]);
Gets summary information about all storage configurations in your account, in the AWS region where the API request is processed.
Parameter Syntax
$result = $client->listStorageConfigurations([ 'maxResults' => <integer>, 'nextToken' => '<string>', ]);
Parameter Details
Members
- maxResults
-
- Type: int
Maximum number of storage configurations to return. Default: your service quota or 100, whichever is smaller.
- nextToken
-
- Type: string
The first storage configuration to retrieve. This is used for pagination; see the
nextToken
response field.
Result Syntax
[ 'nextToken' => '<string>', 'storageConfigurations' => [ [ 'arn' => '<string>', 'name' => '<string>', 's3' => [ 'bucketName' => '<string>', ], 'tags' => ['<string>', ...], ], // ... ], ]
Result Details
Members
- nextToken
-
- Type: string
If there are more storage configurations than
maxResults
, usenextToken
in the request to get the next set. - storageConfigurations
-
- Required: Yes
- Type: Array of StorageConfigurationSummary structures
List of the matching storage configurations.
Errors
ListTagsForResource
$result = $client->listTagsForResource
([/* ... */]); $promise = $client->listTagsForResourceAsync
([/* ... */]);
Gets information about AWS tags for the specified ARN.
Parameter Syntax
$result = $client->listTagsForResource([ 'resourceArn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- resourceArn
-
- Required: Yes
- Type: string
The ARN of the resource to be retrieved. The ARN must be URL-encoded.
Result Syntax
[ 'tags' => ['<string>', ...], ]
Result Details
Members
- tags
-
- Required: Yes
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
.
Errors
StartComposition
$result = $client->startComposition
([/* ... */]); $promise = $client->startCompositionAsync
([/* ... */]);
Starts a Composition from a stage based on the configuration provided in the request.
A Composition is an ephemeral resource that exists after this operation returns successfully. Composition stops and the resource is deleted:
-
When StopComposition is called.
-
After a 1-minute timeout, when all participants are disconnected from the stage.
-
After a 1-minute timeout, if there are no participants in the stage when StartComposition is called.
-
When broadcasting to the IVS channel fails and all retries are exhausted.
-
When broadcasting is disconnected and all attempts to reconnect are exhausted.
Parameter Syntax
$result = $client->startComposition([ 'destinations' => [ // REQUIRED [ 'channel' => [ 'channelArn' => '<string>', // REQUIRED 'encoderConfigurationArn' => '<string>', ], 'name' => '<string>', 's3' => [ 'encoderConfigurationArns' => ['<string>', ...], // REQUIRED 'recordingConfiguration' => [ 'format' => 'HLS', ], 'storageConfigurationArn' => '<string>', // REQUIRED ], ], // ... ], 'idempotencyToken' => '<string>', 'layout' => [ 'grid' => [ 'featuredParticipantAttribute' => '<string>', 'gridGap' => <integer>, 'omitStoppedVideo' => true || false, 'videoAspectRatio' => 'AUTO|VIDEO|SQUARE|PORTRAIT', 'videoFillMode' => 'FILL|COVER|CONTAIN', ], 'pip' => [ 'featuredParticipantAttribute' => '<string>', 'gridGap' => <integer>, 'omitStoppedVideo' => true || false, 'pipBehavior' => 'STATIC|DYNAMIC', 'pipHeight' => <integer>, 'pipOffset' => <integer>, 'pipParticipantAttribute' => '<string>', 'pipPosition' => 'TOP_LEFT|TOP_RIGHT|BOTTOM_LEFT|BOTTOM_RIGHT', 'pipWidth' => <integer>, 'videoFillMode' => 'FILL|COVER|CONTAIN', ], ], 'stageArn' => '<string>', // REQUIRED 'tags' => ['<string>', ...], ]);
Parameter Details
Members
- destinations
-
- Required: Yes
- Type: Array of DestinationConfiguration structures
Array of destination configuration.
- idempotencyToken
-
- Type: string
Idempotency token.
- layout
-
- Type: LayoutConfiguration structure
Layout object to configure composition parameters.
- stageArn
-
- Required: Yes
- Type: string
ARN of the stage to be used for compositing.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Result Syntax
[ 'composition' => [ 'arn' => '<string>', 'destinations' => [ [ 'configuration' => [ 'channel' => [ 'channelArn' => '<string>', 'encoderConfigurationArn' => '<string>', ], 'name' => '<string>', 's3' => [ 'encoderConfigurationArns' => ['<string>', ...], 'recordingConfiguration' => [ 'format' => 'HLS', ], 'storageConfigurationArn' => '<string>', ], ], 'detail' => [ 's3' => [ 'recordingPrefix' => '<string>', ], ], 'endTime' => <DateTime>, 'id' => '<string>', 'startTime' => <DateTime>, 'state' => 'STARTING|ACTIVE|STOPPING|RECONNECTING|FAILED|STOPPED', ], // ... ], 'endTime' => <DateTime>, 'layout' => [ 'grid' => [ 'featuredParticipantAttribute' => '<string>', 'gridGap' => <integer>, 'omitStoppedVideo' => true || false, 'videoAspectRatio' => 'AUTO|VIDEO|SQUARE|PORTRAIT', 'videoFillMode' => 'FILL|COVER|CONTAIN', ], 'pip' => [ 'featuredParticipantAttribute' => '<string>', 'gridGap' => <integer>, 'omitStoppedVideo' => true || false, 'pipBehavior' => 'STATIC|DYNAMIC', 'pipHeight' => <integer>, 'pipOffset' => <integer>, 'pipParticipantAttribute' => '<string>', 'pipPosition' => 'TOP_LEFT|TOP_RIGHT|BOTTOM_LEFT|BOTTOM_RIGHT', 'pipWidth' => <integer>, 'videoFillMode' => 'FILL|COVER|CONTAIN', ], ], 'stageArn' => '<string>', 'startTime' => <DateTime>, 'state' => 'STARTING|ACTIVE|STOPPING|FAILED|STOPPED', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- composition
-
- Type: Composition structure
The Composition that was created.
Errors
StopComposition
$result = $client->stopComposition
([/* ... */]); $promise = $client->stopCompositionAsync
([/* ... */]);
Stops and deletes a Composition resource. Any broadcast from the Composition resource is stopped.
Parameter Syntax
$result = $client->stopComposition([ 'arn' => '<string>', // REQUIRED ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the Composition.
Result Syntax
[]
Result Details
Errors
TagResource
$result = $client->tagResource
([/* ... */]); $promise = $client->tagResourceAsync
([/* ... */]);
Adds or updates tags for the AWS resource with the specified ARN.
Parameter Syntax
$result = $client->tagResource([ 'resourceArn' => '<string>', // REQUIRED 'tags' => ['<string>', ...], // REQUIRED ]);
Parameter Details
Members
- resourceArn
-
- Required: Yes
- Type: string
The ARN of the resource to be tagged. The ARN must be URL-encoded.
- tags
-
- Required: Yes
- Type: Associative array of custom strings keys (TagKey) to strings
Array of tags to be added or updated. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Result Syntax
[]
Result Details
Errors
UntagResource
$result = $client->untagResource
([/* ... */]); $promise = $client->untagResourceAsync
([/* ... */]);
Removes tags from the resource with the specified ARN.
Parameter Syntax
$result = $client->untagResource([ 'resourceArn' => '<string>', // REQUIRED 'tagKeys' => ['<string>', ...], // REQUIRED ]);
Parameter Details
Members
- resourceArn
-
- Required: Yes
- Type: string
The ARN of the resource to be untagged. The ARN must be URL-encoded.
- tagKeys
-
- Required: Yes
- Type: Array of strings
Array of tags to be removed. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Result Syntax
[]
Result Details
Errors
UpdateIngestConfiguration
$result = $client->updateIngestConfiguration
([/* ... */]); $promise = $client->updateIngestConfigurationAsync
([/* ... */]);
Updates a specified IngestConfiguration. Only the stage ARN attached to the IngestConfiguration can be updated. An IngestConfiguration that is active cannot be updated.
Parameter Syntax
$result = $client->updateIngestConfiguration([ 'arn' => '<string>', // REQUIRED 'stageArn' => '<string>', ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the IngestConfiguration, for which the related stage ARN needs to be updated.
- stageArn
-
- Type: string
Stage ARN that needs to be updated.
Result Syntax
[ 'ingestConfiguration' => [ 'arn' => '<string>', 'attributes' => ['<string>', ...], 'ingestProtocol' => 'RTMP|RTMPS', 'name' => '<string>', 'participantId' => '<string>', 'stageArn' => '<string>', 'state' => 'ACTIVE|INACTIVE', 'streamKey' => '<string>', 'tags' => ['<string>', ...], 'userId' => '<string>', ], ]
Result Details
Members
- ingestConfiguration
-
- Type: IngestConfiguration structure
The updated IngestConfiguration.
Errors
UpdateStage
$result = $client->updateStage
([/* ... */]); $promise = $client->updateStageAsync
([/* ... */]);
Updates a stage’s configuration.
Parameter Syntax
$result = $client->updateStage([ 'arn' => '<string>', // REQUIRED 'autoParticipantRecordingConfiguration' => [ 'mediaTypes' => ['<string>', ...], 'storageConfigurationArn' => '<string>', // REQUIRED ], 'name' => '<string>', ]);
Parameter Details
Members
- arn
-
- Required: Yes
- Type: string
ARN of the stage to be updated.
- autoParticipantRecordingConfiguration
-
- Type: AutoParticipantRecordingConfiguration structure
Configuration object for individual participant recording, to attach to the stage. Note that this cannot be updated while recording is active.
- name
-
- Type: string
Name of the stage to be updated.
Result Syntax
[ 'stage' => [ 'activeSessionId' => '<string>', 'arn' => '<string>', 'autoParticipantRecordingConfiguration' => [ 'mediaTypes' => ['<string>', ...], 'storageConfigurationArn' => '<string>', ], 'endpoints' => [ 'events' => '<string>', 'rtmp' => '<string>', 'rtmps' => '<string>', 'whip' => '<string>', ], 'name' => '<string>', 'tags' => ['<string>', ...], ], ]
Result Details
Members
- stage
-
- Type: Stage structure
The updated stage.
Errors
Shapes
AccessDeniedException
Description
Members
- exceptionMessage
-
- Type: string
User does not have sufficient access to perform this action.
AutoParticipantRecordingConfiguration
Description
Object specifying a configuration for individual participant recording.
Members
- mediaTypes
-
- Type: Array of strings
Types of media to be recorded. Default:
AUDIO_VIDEO
. - storageConfigurationArn
-
- Required: Yes
- Type: string
ARN of the StorageConfiguration resource to use for individual participant recording. Default:
""
(empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a Stage is created or updated.
ChannelDestinationConfiguration
Description
Object specifying a channel as a destination.
Members
- channelArn
-
- Required: Yes
- Type: string
ARN of the channel to use for broadcasting. The channel and stage resources must be in the same AWS account and region. The channel must be offline (not broadcasting).
- encoderConfigurationArn
-
- Type: string
ARN of the EncoderConfiguration resource. The encoder configuration and stage resources must be in the same AWS account and region.
Composition
Description
Object specifying a Composition resource.
Members
- arn
-
- Required: Yes
- Type: string
ARN of the Composition resource.
- destinations
-
- Required: Yes
- Type: Array of Destination structures
Array of Destination objects. A Composition can contain either one destination (
channel
ors3
) or two (onechannel
and ones3
). - endTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the Composition end. This is an ISO 8601 timestamp; note that this is returned as a string.
- layout
-
- Required: Yes
- Type: LayoutConfiguration structure
Layout object to configure composition parameters.
- stageArn
-
- Required: Yes
- Type: string
ARN of the stage used as input
- startTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the Composition start. This is an ISO 8601 timestamp; note that this is returned as a string.
- state
-
- Required: Yes
- Type: string
State of the Composition.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
CompositionSummary
Description
Summary information about a Composition.
Members
- arn
-
- Required: Yes
- Type: string
ARN of the Composition resource.
- destinations
-
- Required: Yes
- Type: Array of DestinationSummary structures
Array of Destination objects.
- endTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the Composition end. This is an ISO 8601 timestamp; note that this is returned as a string.
- stageArn
-
- Required: Yes
- Type: string
ARN of the attached stage.
- startTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the Composition start. This is an ISO 8601 timestamp; note that this is returned as a string.
- state
-
- Required: Yes
- Type: string
State of the Composition resource.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
ConflictException
Description
Members
- exceptionMessage
-
- Type: string
Updating or deleting a resource can cause an inconsistent state.
Destination
Description
Object specifying the status of a Destination.
Members
- configuration
-
- Required: Yes
- Type: DestinationConfiguration structure
Configuration used to create this destination.
- detail
-
- Type: DestinationDetail structure
Optional details regarding the status of the destination.
- endTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the destination end. This is an ISO 8601 timestamp; note that this is returned as a string.
- id
-
- Required: Yes
- Type: string
Unique identifier for this destination, assigned by IVS.
- startTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the destination start. This is an ISO 8601 timestamp; note that this is returned as a string.
- state
-
- Required: Yes
- Type: string
State of the Composition Destination.
DestinationConfiguration
Description
Complex data type that defines destination-configuration objects.
Members
- channel
-
- Type: ChannelDestinationConfiguration structure
An IVS channel to be used for broadcasting, for server-side composition. Either a
channel
or ans3
must be specified. - name
-
- Type: string
Name that can be specified to help identify the destination.
- s3
-
- Type: S3DestinationConfiguration structure
An S3 storage configuration to be used for recording video data. Either a
channel
or ans3
must be specified.
DestinationDetail
Description
Complex data type that defines destination-detail objects.
Members
- s3
-
- Type: S3Detail structure
An S3 detail object to return information about the S3 destination.
DestinationSummary
Description
Summary information about a Destination.
Members
- endTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the destination end. This is an ISO 8601 timestamp; note that this is returned as a string.
- id
-
- Required: Yes
- Type: string
Unique identifier for this destination, assigned by IVS.
- startTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
UTC time of the destination start. This is an ISO 8601 timestamp; note that this is returned as a string.
- state
-
- Required: Yes
- Type: string
State of the Composition Destination.
EncoderConfiguration
Description
Settings for transcoding.
Members
- arn
-
- Required: Yes
- Type: string
ARN of the EncoderConfiguration resource.
- name
-
- Type: string
Optional name to identify the resource.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there. - video
-
- Type: Video structure
Video configuration. Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps
EncoderConfigurationSummary
Description
Summary information about an EncoderConfiguration.
Members
- arn
-
- Required: Yes
- Type: string
ARN of the EncoderConfiguration resource.
- name
-
- Type: string
Optional name to identify the resource.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
Event
Description
An occurrence during a stage session.
Members
- errorCode
-
- Type: string
If the event is an error event, the error code is provided to give insight into the specific error that occurred. If the event is not an error event, this field is null.
-
B_FRAME_PRESENT
— The participant's stream includes B-frames. For details, see IVS RTMP Publishing. -
BITRATE_EXCEEDED
— The participant exceeded the maximum supported bitrate. For details, see Service Quotas. -
INSUFFICIENT_CAPABILITIES
— The participant tried to take an action that the participant’s token is not allowed to do. For details on participant capabilities, see thecapabilities
field in CreateParticipantToken. -
INTERNAL_SERVER_EXCEPTION
— The participant failed to publish to the stage due to an internal server error. -
INVALID_AUDIO_CODEC
— The participant is using an invalid audio codec. For details, see Stream Ingest. -
INVALID_INPUT
— The participant is using an invalid input stream. -
INVALID_PROTOCOL
— The participant's IngestConfiguration resource is configured for RTMPS but they tried streaming with RTMP. For details, see IVS RTMP Publishing. -
INVALID_STREAM_KEY
— The participant is using an invalid stream key. For details, see IVS RTMP Publishing. -
INVALID_VIDEO_CODEC
— The participant is using an invalid video codec. For details, see Stream Ingest. -
PUBLISHER_NOT_FOUND
— The participant tried to subscribe to a publisher that doesn’t exist. -
QUOTA_EXCEEDED
— The number of participants who want to publish/subscribe to a stage exceeds the quota. For details, see Service Quotas. -
RESOLUTION_EXCEEDED
— The participant exceeded the maximum supported resolution. For details, see Service Quotas. -
REUSE_OF_STREAM_KEY
— The participant tried to use a stream key that is associated with another active stage session. -
STREAM_DURATION_EXCEEDED
— The participant exceeded the maximum allowed stream duration. For details, see Service Quotas.
- eventTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) for when the event occurred.
- name
-
- Type: string
The name of the event.
- participantId
-
- Type: string
Unique identifier for the participant who triggered the event. This is assigned by IVS.
- remoteParticipantId
-
- Type: string
Unique identifier for the remote participant. For a subscribe event, this is the publisher. For a publish or join event, this is null. This is assigned by IVS.
GridConfiguration
Description
Configuration information specific to Grid layout, for server-side composition. See "Layouts" in Server-Side Composition.
Members
- featuredParticipantAttribute
-
- Type: string
This attribute name identifies the featured slot. A participant with this attribute set to
"true"
(as a string value) in ParticipantTokenConfiguration is placed in the featured slot. Default:""
(no featured participant). - gridGap
-
- Type: int
Specifies the spacing between participant tiles in pixels. Default:
2
. - omitStoppedVideo
-
- Type: boolean
Determines whether to omit participants with stopped video in the composition. Default:
false
. - videoAspectRatio
-
- Type: string
Sets the non-featured participant display mode, to control the aspect ratio of video tiles.
VIDEO
is 16:9,SQUARE
is 1:1, andPORTRAIT
is 3:4. Default:VIDEO
. - videoFillMode
-
- Type: string
Defines how video content fits within the participant tile:
FILL
(stretched),COVER
(cropped), orCONTAIN
(letterboxed). When not set,videoFillMode
defaults toCOVER
fill mode for participants in the grid and toCONTAIN
fill mode for featured participants.
IngestConfiguration
Description
Object specifying an ingest configuration.
Members
- arn
-
- Required: Yes
- Type: string
Ingest configuration ARN.
- attributes
-
- Type: Associative array of custom strings keys (String) to strings
Application-provided attributes to to store in the IngestConfiguration and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
- ingestProtocol
-
- Required: Yes
- Type: string
Type of ingest protocol that the user employs for broadcasting.
- name
-
- Type: string
Ingest name
- participantId
-
- Required: Yes
- Type: string
ID of the participant within the stage.
- stageArn
-
- Required: Yes
- Type: string
ARN of the stage with which the IngestConfiguration is associated.
- state
-
- Required: Yes
- Type: string
State of the ingest configuration. It is
ACTIVE
if a publisher currently is publishing to the stage associated with the ingest configuration. - streamKey
-
- Required: Yes
- Type: string
Ingest-key value for the RTMP(S) protocol.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there. - userId
-
- Type: string
Customer-assigned name to help identify the participant using the IngestConfiguration; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
IngestConfigurationSummary
Description
Summary information about an IngestConfiguration.
Members
- arn
-
- Required: Yes
- Type: string
Ingest configuration ARN.
- ingestProtocol
-
- Required: Yes
- Type: string
Type of ingest protocol that the user employs for broadcasting.
- name
-
- Type: string
Ingest name.
- participantId
-
- Required: Yes
- Type: string
ID of the participant within the stage.
- stageArn
-
- Required: Yes
- Type: string
ARN of the stage with which the IngestConfiguration is associated.
- state
-
- Required: Yes
- Type: string
State of the ingest configuration. It is
ACTIVE
if a publisher currently is publishing to the stage associated with the ingest configuration. - userId
-
- Type: string
Customer-assigned name to help identify the participant using the IngestConfiguration; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
InternalServerException
Description
Members
- exceptionMessage
-
- Type: string
Unexpected error during processing of request.
LayoutConfiguration
Description
Configuration information of supported layouts for server-side composition.
Members
- grid
-
- Type: GridConfiguration structure
Configuration related to grid layout. Default: Grid layout.
- pip
-
- Type: PipConfiguration structure
Configuration related to PiP layout.
Participant
Description
Object describing a participant that has joined a stage.
Members
- attributes
-
- Type: Associative array of custom strings keys (String) to strings
Application-provided attributes to encode into the token and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
- browserName
-
- Type: string
The participant’s browser.
- browserVersion
-
- Type: string
The participant’s browser version.
- firstJoinTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) when the participant first joined the stage session.
- ispName
-
- Type: string
The participant’s Internet Service Provider.
- osName
-
- Type: string
The participant’s operating system.
- osVersion
-
- Type: string
The participant’s operating system version.
- participantId
-
- Type: string
Unique identifier for this participant, assigned by IVS.
- protocol
-
- Type: string
Type of ingest protocol that the participant employs for broadcasting.
- published
-
- Type: boolean
Whether the participant ever published to the stage session.
- recordingS3BucketName
-
- Type: string
Name of the S3 bucket to where the participant is being recorded, if individual participant recording is enabled, or
""
(empty string), if recording is not enabled. - recordingS3Prefix
-
- Type: string
S3 prefix of the S3 bucket where the participant is being recorded, if individual participant recording is enabled, or
""
(empty string), if recording is not enabled. - recordingState
-
- Type: string
The participant’s recording state.
- sdkVersion
-
- Type: string
The participant’s SDK version.
- state
-
- Type: string
Whether the participant is connected to or disconnected from the stage.
- userId
-
- Type: string
Customer-assigned name to help identify the token; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
ParticipantSummary
Description
Summary object describing a participant that has joined a stage.
Members
- firstJoinTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) when the participant first joined the stage session.
- participantId
-
- Type: string
Unique identifier for this participant, assigned by IVS.
- published
-
- Type: boolean
Whether the participant ever published to the stage session.
- recordingState
-
- Type: string
The participant’s recording state.
- state
-
- Type: string
Whether the participant is connected to or disconnected from the stage.
- userId
-
- Type: string
Customer-assigned name to help identify the token; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
ParticipantToken
Description
Object specifying a participant token in a stage.
Important: Treat tokens as opaque; i.e., do not build functionality based on token contents. The format of tokens could change in the future.
Members
- attributes
-
- Type: Associative array of custom strings keys (String) to strings
Application-provided attributes to encode into the token and attach to a stage. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
- capabilities
-
- Type: Array of strings
Set of capabilities that the user is allowed to perform in the stage.
- duration
-
- Type: int
Duration (in minutes), after which the participant token expires. Default: 720 (12 hours).
- expirationTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) for when this token expires.
- participantId
-
- Type: string
Unique identifier for this participant token, assigned by IVS.
- token
-
- Type: string
The issued client token, encrypted.
- userId
-
- Type: string
Customer-assigned name to help identify the token; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
ParticipantTokenConfiguration
Description
Object specifying a participant token configuration in a stage.
Members
- attributes
-
- Type: Associative array of custom strings keys (String) to strings
Application-provided attributes to encode into the corresponding participant token and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
- capabilities
-
- Type: Array of strings
Set of capabilities that the user is allowed to perform in the stage.
- duration
-
- Type: int
Duration (in minutes), after which the corresponding participant token expires. Default: 720 (12 hours).
- userId
-
- Type: string
Customer-assigned name to help identify the token; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
PendingVerification
Description
Members
- exceptionMessage
-
- Type: string
Your account is pending verification.
PipConfiguration
Description
Configuration information specific to Picture-in-Picture (PiP) layout, for server-side composition.
Members
- featuredParticipantAttribute
-
- Type: string
This attribute name identifies the featured slot. A participant with this attribute set to
"true"
(as a string value) in ParticipantTokenConfiguration is placed in the featured slot. Default:""
(no featured participant). - gridGap
-
- Type: int
Specifies the spacing between participant tiles in pixels. Default:
0
. - omitStoppedVideo
-
- Type: boolean
Determines whether to omit participants with stopped video in the composition. Default:
false
. - pipBehavior
-
- Type: string
Defines PiP behavior when all participants have left:
STATIC
(maintains original position/size) orDYNAMIC
(expands to full composition). Default:STATIC
. - pipHeight
-
- Type: int
Specifies the height of the PiP window in pixels. When this is not set explicitly,
pipHeight
’s value will be based on the size of the composition and the aspect ratio of the participant’s video. - pipOffset
-
- Type: int
Sets the PiP window’s offset position in pixels from the closest edges determined by
PipPosition
. Default:0
. - pipParticipantAttribute
-
- Type: string
Specifies the participant for the PiP window. A participant with this attribute set to
"true"
(as a string value) in ParticipantTokenConfiguration is placed in the PiP slot. Default:""
(no PiP participant). - pipPosition
-
- Type: string
Determines the corner position of the PiP window. Default:
BOTTOM_RIGHT
. - pipWidth
-
- Type: int
Specifies the width of the PiP window in pixels. When this is not set explicitly,
pipWidth
’s value will be based on the size of the composition and the aspect ratio of the participant’s video. - videoFillMode
-
- Type: string
Defines how video content fits within the participant tile:
FILL
(stretched),COVER
(cropped), orCONTAIN
(letterboxed). Default:COVER
.
PublicKey
Description
Object specifying a public key used to sign stage participant tokens.
Members
- arn
-
- Type: string
Public key ARN.
- fingerprint
-
- Type: string
The public key fingerprint, a short string used to identify or verify the full public key.
- name
-
- Type: string
Public key name.
- publicKeyMaterial
-
- Type: string
Public key material.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
PublicKeySummary
Description
Summary information about a public key.
Members
- arn
-
- Type: string
Public key ARN.
- name
-
- Type: string
Public key name.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
RecordingConfiguration
Description
An object representing a configuration to record a stage stream.
Members
- format
-
- Type: string
The recording format for storing a recording in Amazon S3.
ResourceNotFoundException
Description
Members
- exceptionMessage
-
- Type: string
Request references a resource which does not exist.
S3DestinationConfiguration
Description
A complex type that describes an S3 location where recorded videos will be stored.
Members
- encoderConfigurationArns
-
- Required: Yes
- Type: Array of strings
ARNs of the EncoderConfiguration resource. The encoder configuration and stage resources must be in the same AWS account and region.
- recordingConfiguration
-
- Type: RecordingConfiguration structure
Array of maps, each of the form
string:string (key:value)
. This is an optional customer specification, currently used only to specify the recording format for storing a recording in Amazon S3. - storageConfigurationArn
-
- Required: Yes
- Type: string
ARN of the StorageConfiguration where recorded videos will be stored.
S3Detail
Description
Complex data type that defines S3Detail objects.
Members
- recordingPrefix
-
- Required: Yes
- Type: string
The S3 bucket prefix under which the recording is stored.
S3StorageConfiguration
Description
A complex type that describes an S3 location where recorded videos will be stored.
Members
- bucketName
-
- Required: Yes
- Type: string
Location (S3 bucket name) where recorded videos will be stored. Note that the StorageConfiguration and S3 bucket must be in the same region as the Composition.
ServiceQuotaExceededException
Description
Members
- exceptionMessage
-
- Type: string
Request would cause a service quota to be exceeded.
Stage
Description
Object specifying a stage.
Members
- activeSessionId
-
- Type: string
ID of the active session within the stage.
- arn
-
- Required: Yes
- Type: string
Stage ARN.
- autoParticipantRecordingConfiguration
-
- Type: AutoParticipantRecordingConfiguration structure
Configuration object for individual participant recording, attached to the stage.
- endpoints
-
- Type: StageEndpoints structure
Summary information about various endpoints for a stage.
- name
-
- Type: string
Stage name.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
StageEndpoints
Description
Summary information about various endpoints for a stage. We recommend that you cache these values at stage creation; the values can be cached for up to 14 days.
Members
- events
-
- Type: string
Events endpoint.
- rtmp
-
- Type: string
The endpoint to be used for IVS real-time streaming using the RTMP protocol.
- rtmps
-
- Type: string
The endpoint to be used for IVS real-time streaming using the RTMPS protocol.
- whip
-
- Type: string
The endpoint to be used for IVS real-time streaming using the WHIP protocol.
StageSession
Description
A stage session begins when the first participant joins a stage and ends after the last participant leaves the stage. A stage session helps with debugging stages by grouping events and participants into shorter periods of time (i.e., a session), which is helpful when stages are used over long periods of time.
Members
- endTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.
- sessionId
-
- Type: string
ID of the session within the stage.
- startTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) when this stage session began.
StageSessionSummary
Description
Summary information about a stage session.
Members
- endTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.
- sessionId
-
- Type: string
ID of the session within the stage.
- startTime
-
- Type: timestamp (string|DateTime or anything parsable by strtotime)
ISO 8601 timestamp (returned as a string) when this stage session began.
StageSummary
Description
Summary information about a stage.
Members
- activeSessionId
-
- Type: string
ID of the active session within the stage.
- arn
-
- Required: Yes
- Type: string
Stage ARN.
- name
-
- Type: string
Stage name.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
StorageConfiguration
Description
A complex type that describes a location where recorded videos will be stored.
Members
- arn
-
- Required: Yes
- Type: string
ARN of the storage configuration.
- name
-
- Type: string
Name of the storage configuration.
- s3
-
- Type: S3StorageConfiguration structure
An S3 destination configuration where recorded videos will be stored.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
StorageConfigurationSummary
Description
Summary information about a storage configuration.
Members
- arn
-
- Required: Yes
- Type: string
ARN of the storage configuration.
- name
-
- Type: string
Name of the storage configuration.
- s3
-
- Type: S3StorageConfiguration structure
An S3 destination configuration where recorded videos will be stored.
- tags
-
- Type: Associative array of custom strings keys (TagKey) to strings
Tags attached to the resource. Array of maps, each of the form
string:string (key:value)
. See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
ValidationException
Description
Members
- exceptionMessage
-
- Type: string
The input fails to satisfy the constraints specified by an Amazon Web Services service.
Video
Description
Settings for video.
Members
- bitrate
-
- Type: int
Bitrate for generated output, in bps. Default: 2500000.
- framerate
-
- Type: float
Video frame rate, in fps. Default: 30.
- height
-
- Type: int
Video-resolution height. This must be an even number. Note that the maximum value is determined by
width
timesheight
, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720. - width
-
- Type: int
Video-resolution width. This must be an even number. Note that the maximum value is determined by
width
timesheight
, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.