airflow.providers.amazon.aws.auth_manager.user

Classes

AwsAuthManagerUser

User model for users managed by the AWS Auth Manager.

Module Contents

class airflow.providers.amazon.aws.auth_manager.user.AwsAuthManagerUser(*, user_id, groups, username=None, email=None)[source]

Bases: airflow.auth.managers.models.base_user.BaseUser

User model for users managed by the AWS Auth Manager.

Parameters:
  • user_id (str) – The user ID.

  • groups (list[str]) – The groups the user belongs to.

  • username (str | None) – The username of the user.

  • email (str | None) – The email of the user.

user_id[source]
groups[source]
username = None[source]
email = None[source]
get_id()[source]
get_name()[source]
get_groups()[source]

Was this entry helpful?