AWS Single Sign-On Admin

2025/08/11 - AWS Single Sign-On Admin - 2 new api methods

Changes  Added support for managing user background session for applications

GetApplicationSessionConfiguration (new) Link ¶

Retrieves the session configuration for an application in IAM Identity Center.

The session configuration determines how users can access an application. This includes whether user background sessions are enabled. User background sessions allow users to start a job on a supported Amazon Web Services managed application without having to remain signed in to an active session while the job runs.

See also: AWS API Documentation

Request Syntax

client.get_application_session_configuration(
    ApplicationArn='string'
)
type ApplicationArn:

string

param ApplicationArn:

[REQUIRED]

The Amazon Resource Name (ARN) of the application for which to retrieve the session configuration.

rtype:

dict

returns:

Response Syntax

{
    'UserBackgroundSessionApplicationStatus': 'ENABLED'|'DISABLED'
}

Response Structure

  • (dict) --

    • UserBackgroundSessionApplicationStatus (string) --

      The status of user background sessions for the application.

PutApplicationSessionConfiguration (new) Link ¶

Updates the session configuration for an application in IAM Identity Center.

The session configuration determines how users can access an application. This includes whether user background sessions are enabled. User background sessions allow users to start a job on a supported Amazon Web Services managed application without having to remain signed in to an active session while the job runs.

See also: AWS API Documentation

Request Syntax

client.put_application_session_configuration(
    ApplicationArn='string',
    UserBackgroundSessionApplicationStatus='ENABLED'|'DISABLED'
)
type ApplicationArn:

string

param ApplicationArn:

[REQUIRED]

The Amazon Resource Name (ARN) of the application for which to update the session configuration.

type UserBackgroundSessionApplicationStatus:

string

param UserBackgroundSessionApplicationStatus:

The status of user background sessions for the application.

rtype:

dict

returns:

Response Syntax

{}

Response Structure

  • (dict) --