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 using this stream group. The disassociate action does not affect the stream capacity of a stream group.
You can only disassociate an application if it’s not a default application of the stream group. Check
DefaultApplicationIdentifier
by calling GetStreamGroup.See also: AWS API Documentation
Request Syntax
response = client.disassociate_applications( ApplicationIdentifiers=[ 'string', ], Identifier='string' )
- Parameters:
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) –
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
.
- Return type:
dict
- Returns:
Response Syntax
{ 'ApplicationArns': [ 'string', ], 'Arn': 'string' }
Response Structure
(dict) –
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) –
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
.
Exceptions