GameLiftStreams / Client / disassociate_applications
disassociate_applications¶
- GameLiftStreams.Client.disassociate_applications(**kwargs)¶
When you disassociate, or unlink, an application from a stream group, you can no longer stream this application by using that stream group’s allocated compute resources. Any streams in process will continue until they terminate, which helps avoid interrupting an end-user’s stream. Amazon GameLift Streams will not initiate new streams in the stream group using the disassociated application. The disassociate action does not affect the stream capacity of a stream group.
If you disassociate the default application, Amazon GameLift Streams will automatically choose a new default application from the remaining associated applications. To change which application is the default application, call UpdateStreamGroup and specify a new
DefaultApplicationIdentifier
.See also: AWS API Documentation
Request Syntax
response = client.disassociate_applications( Identifier='string', ApplicationIdentifiers=[ 'string', ] )
- Parameters:
Identifier (string) –
[REQUIRED]
A stream group to disassociate these applications from.
This value is an Amazon Resource Name (ARN) or ID that uniquely identifies the stream group resource. Example ARN:
arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4
. Example ID:sg-1AB2C3De4
.ApplicationIdentifiers (list) –
[REQUIRED]
A set of applications that you want to disassociate from the stream group.
This value is a set of either Amazon Resource Names (ARN) or IDs that uniquely identify application resources. Example ARN:
arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6
. Example ID:a-9ZY8X7Wv6
.(string) –
- Return type:
dict
- Returns:
Response Syntax
{ 'Arn': 'string', 'ApplicationArns': [ 'string', ] }
Response Structure
(dict) –
Arn (string) –
An Amazon Resource Name (ARN) that uniquely identifies the stream group resource. Example ARN:
arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4
.ApplicationArns (list) –
A set of applications that are disassociated from this stream group.
This value is a set of Amazon Resource Names (ARNs) that uniquely identify application resources. Example ARN:
arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6
.(string) –
Exceptions
GameLiftStreams.Client.exceptions.AccessDeniedException
GameLiftStreams.Client.exceptions.ResourceNotFoundException
GameLiftStreams.Client.exceptions.ThrottlingException
GameLiftStreams.Client.exceptions.InternalServerException
GameLiftStreams.Client.exceptions.ValidationException