airflow.providers.amazon.aws.auth_manager.user

Module Contents

Classes

AwsAuthManagerUser

User model for users managed by the AWS Auth Manager.

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.

get_id()[source]
get_name()[source]
get_groups()[source]

Was this entry helpful?