Skip to main content

Type annotations for boto3.IAM 1.35.61 service generated with mypy-boto3-builder 8.2.1

Project description

mypy-boto3-iam

PyPI - mypy-boto3-iam PyPI - Python Version Docs PyPI - Downloads

boto3.typed

Type annotations for boto3.IAM 1.35.61 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated by mypy-boto3-builder 8.2.1.

More information can be found on boto3-stubs page and in mypy-boto3-iam docs.

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and IAM.

From PyPI with pip

Install boto3-stubs for IAM service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[iam]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[iam]'


# standalone installation
python -m pip install mypy-boto3-iam

How to uninstall

python -m pip uninstall -y mypy-boto3-iam

Usage

VSCode

python -m pip install 'boto3-stubs[iam]'

Both type checking and code completion should now work. No explicit type annotations required, write your boto3 code as usual.

PyCharm

Install boto3-stubs-lite[iam] in your environment:

python -m pip install 'boto3-stubs-lite[iam]'

Both type checking and code completion should now work. Explicit type annotations are required.

Use boto3-stubs package instead for implicit type discovery.

Emacs

  • Install boto3-stubs with services you use in your environment:
python -m pip install 'boto3-stubs[iam]'
(use-package lsp-pyright
  :ensure t
  :hook (python-mode . (lambda ()
                          (require 'lsp-pyright)
                          (lsp)))  ; or lsp-deferred
  :init (when (executable-find "python3")
          (setq lsp-pyright-python-executable-cmd "python3"))
  )
  • Make sure emacs uses the environment where you have installed boto3-stubs

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Sublime Text

  • Install boto3-stubs[iam] with services you use in your environment:
python -m pip install 'boto3-stubs[iam]'

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Other IDEs

Not tested, but as long as your IDE supports mypy or pyright, everything should work.

mypy

  • Install mypy: python -m pip install mypy
  • Install boto3-stubs[iam] in your environment:
python -m pip install 'boto3-stubs[iam]'

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

pyright

  • Install pyright: npm i -g pyright
  • Install boto3-stubs[iam] in your environment:
python -m pip install 'boto3-stubs[iam]'

Optionally, you can install boto3-stubs to typings directory.

Type checking should now work. No explicit type annotations required, write your boto3 code as usual.

Explicit type annotations

Client annotations

IAMClient provides annotations for boto3.client("iam").

from boto3.session import Session

from mypy_boto3_iam import IAMClient

client: IAMClient = Session().client("iam")

# now client usage is checked by mypy and IDE should provide code completion

Paginators annotations

mypy_boto3_iam.paginator module contains type annotations for all paginators.

from boto3.session import Session

from mypy_boto3_iam import IAMClient
from mypy_boto3_iam.paginator import (
    GetAccountAuthorizationDetailsPaginator,
    GetGroupPaginator,
    ListAccessKeysPaginator,
    ListAccountAliasesPaginator,
    ListAttachedGroupPoliciesPaginator,
    ListAttachedRolePoliciesPaginator,
    ListAttachedUserPoliciesPaginator,
    ListEntitiesForPolicyPaginator,
    ListGroupPoliciesPaginator,
    ListGroupsForUserPaginator,
    ListGroupsPaginator,
    ListInstanceProfileTagsPaginator,
    ListInstanceProfilesForRolePaginator,
    ListInstanceProfilesPaginator,
    ListMFADeviceTagsPaginator,
    ListMFADevicesPaginator,
    ListOpenIDConnectProviderTagsPaginator,
    ListPoliciesPaginator,
    ListPolicyTagsPaginator,
    ListPolicyVersionsPaginator,
    ListRolePoliciesPaginator,
    ListRoleTagsPaginator,
    ListRolesPaginator,
    ListSAMLProviderTagsPaginator,
    ListSSHPublicKeysPaginator,
    ListServerCertificateTagsPaginator,
    ListServerCertificatesPaginator,
    ListSigningCertificatesPaginator,
    ListUserPoliciesPaginator,
    ListUserTagsPaginator,
    ListUsersPaginator,
    ListVirtualMFADevicesPaginator,
    SimulateCustomPolicyPaginator,
    SimulatePrincipalPolicyPaginator,
)

client: IAMClient = Session().client("iam")

# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
get_account_authorization_details_paginator: GetAccountAuthorizationDetailsPaginator = (
    client.get_paginator("get_account_authorization_details")
)
get_group_paginator: GetGroupPaginator = client.get_paginator("get_group")
list_access_keys_paginator: ListAccessKeysPaginator = client.get_paginator("list_access_keys")
list_account_aliases_paginator: ListAccountAliasesPaginator = client.get_paginator(
    "list_account_aliases"
)
list_attached_group_policies_paginator: ListAttachedGroupPoliciesPaginator = client.get_paginator(
    "list_attached_group_policies"
)
list_attached_role_policies_paginator: ListAttachedRolePoliciesPaginator = client.get_paginator(
    "list_attached_role_policies"
)
list_attached_user_policies_paginator: ListAttachedUserPoliciesPaginator = client.get_paginator(
    "list_attached_user_policies"
)
list_entities_for_policy_paginator: ListEntitiesForPolicyPaginator = client.get_paginator(
    "list_entities_for_policy"
)
list_group_policies_paginator: ListGroupPoliciesPaginator = client.get_paginator(
    "list_group_policies"
)
list_groups_for_user_paginator: ListGroupsForUserPaginator = client.get_paginator(
    "list_groups_for_user"
)
list_groups_paginator: ListGroupsPaginator = client.get_paginator("list_groups")
list_instance_profile_tags_paginator: ListInstanceProfileTagsPaginator = client.get_paginator(
    "list_instance_profile_tags"
)
list_instance_profiles_for_role_paginator: ListInstanceProfilesForRolePaginator = (
    client.get_paginator("list_instance_profiles_for_role")
)
list_instance_profiles_paginator: ListInstanceProfilesPaginator = client.get_paginator(
    "list_instance_profiles"
)
list_mfa_device_tags_paginator: ListMFADeviceTagsPaginator = client.get_paginator(
    "list_mfa_device_tags"
)
list_mfa_devices_paginator: ListMFADevicesPaginator = client.get_paginator("list_mfa_devices")
list_open_id_connect_provider_tags_paginator: ListOpenIDConnectProviderTagsPaginator = (
    client.get_paginator("list_open_id_connect_provider_tags")
)
list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
list_policy_tags_paginator: ListPolicyTagsPaginator = client.get_paginator("list_policy_tags")
list_policy_versions_paginator: ListPolicyVersionsPaginator = client.get_paginator(
    "list_policy_versions"
)
list_role_policies_paginator: ListRolePoliciesPaginator = client.get_paginator("list_role_policies")
list_role_tags_paginator: ListRoleTagsPaginator = client.get_paginator("list_role_tags")
list_roles_paginator: ListRolesPaginator = client.get_paginator("list_roles")
list_saml_provider_tags_paginator: ListSAMLProviderTagsPaginator = client.get_paginator(
    "list_saml_provider_tags"
)
list_ssh_public_keys_paginator: ListSSHPublicKeysPaginator = client.get_paginator(
    "list_ssh_public_keys"
)
list_server_certificate_tags_paginator: ListServerCertificateTagsPaginator = client.get_paginator(
    "list_server_certificate_tags"
)
list_server_certificates_paginator: ListServerCertificatesPaginator = client.get_paginator(
    "list_server_certificates"
)
list_signing_certificates_paginator: ListSigningCertificatesPaginator = client.get_paginator(
    "list_signing_certificates"
)
list_user_policies_paginator: ListUserPoliciesPaginator = client.get_paginator("list_user_policies")
list_user_tags_paginator: ListUserTagsPaginator = client.get_paginator("list_user_tags")
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
list_virtual_mfa_devices_paginator: ListVirtualMFADevicesPaginator = client.get_paginator(
    "list_virtual_mfa_devices"
)
simulate_custom_policy_paginator: SimulateCustomPolicyPaginator = client.get_paginator(
    "simulate_custom_policy"
)
simulate_principal_policy_paginator: SimulatePrincipalPolicyPaginator = client.get_paginator(
    "simulate_principal_policy"
)

Waiters annotations

mypy_boto3_iam.waiter module contains type annotations for all waiters.

from boto3.session import Session

from mypy_boto3_iam import IAMClient
from mypy_boto3_iam.waiter import (
    InstanceProfileExistsWaiter,
    PolicyExistsWaiter,
    RoleExistsWaiter,
    UserExistsWaiter,
)

client: IAMClient = Session().client("iam")

# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
instance_profile_exists_waiter: InstanceProfileExistsWaiter = client.get_waiter(
    "instance_profile_exists"
)
policy_exists_waiter: PolicyExistsWaiter = client.get_waiter("policy_exists")
role_exists_waiter: RoleExistsWaiter = client.get_waiter("role_exists")
user_exists_waiter: UserExistsWaiter = client.get_waiter("user_exists")

Service Resource annotations

IAMServiceResource provides annotations for boto3.resource("iam").

from boto3.session import Session

from mypy_boto3_iam import IAMServiceResource

resource: IAMServiceResource = Session().resource("iam")

# now resource usage is checked by mypy and IDE should provide code completion

Other resources annotations

mypy_boto3_iam.service_resource module contains type annotations for all resources.

from boto3.session import Session

from mypy_boto3_iam import IAMServiceResource
from mypy_boto3_iam.service_resource import (
    AccessKey,
    AccessKeyPair,
    AccountPasswordPolicy,
    AccountSummary,
    AssumeRolePolicy,
    CurrentUser,
    Group,
    GroupPolicy,
    InstanceProfile,
    LoginProfile,
    MfaDevice,
    Policy,
    PolicyVersion,
    Role,
    RolePolicy,
    SamlProvider,
    ServerCertificate,
    SigningCertificate,
    User,
    UserPolicy,
    VirtualMfaDevice,
)

resource: IAMServiceResource = Session().resource("iam")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
my_access_key: AccessKey = resource.AccessKey(...)
my_access_key_pair: AccessKeyPair = resource.AccessKeyPair(...)
my_account_password_policy: AccountPasswordPolicy = resource.AccountPasswordPolicy(...)
my_account_summary: AccountSummary = resource.AccountSummary(...)
my_assume_role_policy: AssumeRolePolicy = resource.AssumeRolePolicy(...)
my_current_user: CurrentUser = resource.CurrentUser(...)
my_group: Group = resource.Group(...)
my_group_policy: GroupPolicy = resource.GroupPolicy(...)
my_instance_profile: InstanceProfile = resource.InstanceProfile(...)
my_login_profile: LoginProfile = resource.LoginProfile(...)
my_mfa_device: MfaDevice = resource.MfaDevice(...)
my_policy: Policy = resource.Policy(...)
my_policy_version: PolicyVersion = resource.PolicyVersion(...)
my_role: Role = resource.Role(...)
my_role_policy: RolePolicy = resource.RolePolicy(...)
my_saml_provider: SamlProvider = resource.SamlProvider(...)
my_server_certificate: ServerCertificate = resource.ServerCertificate(...)
my_signing_certificate: SigningCertificate = resource.SigningCertificate(...)
my_user: User = resource.User(...)
my_user_policy: UserPolicy = resource.UserPolicy(...)
my_virtual_mfa_device: VirtualMfaDevice = resource.VirtualMfaDevice(...)

Collections annotations

mypy_boto3_iam.service_resource module contains type annotations for all IAMServiceResource collections.

from boto3.session import Session

from mypy_boto3_iam import IAMServiceResource
from mypy_boto3_iam.service_resource import (
    ServiceResourceGroupsCollection,
    ServiceResourceInstanceProfilesCollection,
    ServiceResourcePoliciesCollection,
    ServiceResourceRolesCollection,
    ServiceResourceSamlProvidersCollection,
    ServiceResourceServerCertificatesCollection,
    ServiceResourceUsersCollection,
    ServiceResourceVirtualMfaDevicesCollection,
)

resource: IAMServiceResource = Session().resource("iam")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
groups: iam_resources.ServiceResourceGroupsCollection = resource.groups
instance_profiles: iam_resources.ServiceResourceInstanceProfilesCollection = (
    resource.instance_profiles
)
policies: iam_resources.ServiceResourcePoliciesCollection = resource.policies
roles: iam_resources.ServiceResourceRolesCollection = resource.roles
saml_providers: iam_resources.ServiceResourceSamlProvidersCollection = resource.saml_providers
server_certificates: iam_resources.ServiceResourceServerCertificatesCollection = (
    resource.server_certificates
)
users: iam_resources.ServiceResourceUsersCollection = resource.users
virtual_mfa_devices: iam_resources.ServiceResourceVirtualMfaDevicesCollection = (
    resource.virtual_mfa_devices
)

Literals

mypy_boto3_iam.literals module contains literals extracted from shapes that can be used in user code for type checking.

Full list of IAM Literals can be found in docs.

from mypy_boto3_iam.literals import AccessAdvisorUsageGranularityTypeType


def check_value(value: AccessAdvisorUsageGranularityTypeType) -> bool: ...

Type definitions

mypy_boto3_iam.type_defs module contains structures and shapes assembled to typed dictionaries and unions for additional type checking.

Full list of IAM TypeDefs can be found in docs.

from mypy_boto3_iam.type_defs import AccessDetailTypeDef


def get_value() -> AccessDetailTypeDef:
    return {...}

How it works

Fully automated mypy-boto3-builder carefully generates type annotations for each service, patiently waiting for boto3 updates. It delivers drop-in type annotations for you and makes sure that:

  • All available boto3 services are covered.
  • Each public class and method of every boto3 service gets valid type annotations extracted from botocore schemas.
  • Type annotations include up-to-date documentation.
  • Link to documentation is provided for every method.
  • Code is processed by ruff for readability.

What's new

Implemented features

  • Fully type annotated boto3, botocore, aiobotocore and aioboto3 libraries
  • mypy, pyright, VSCode, PyCharm, Sublime Text and Emacs compatibility
  • Client, ServiceResource, Resource, Waiter Paginator type annotations for each service
  • Generated TypeDefs for each service
  • Generated Literals for each service
  • Auto discovery of types for boto3.client and boto3.resource calls
  • Auto discovery of types for session.client and session.resource calls
  • Auto discovery of types for client.get_waiter and client.get_paginator calls
  • Auto discovery of types for ServiceResource and Resource collections
  • Auto discovery of types for aiobotocore.Session.create_client calls

Latest changes

Builder changelog can be found in Releases.

Versioning

mypy-boto3-iam version is the same as related boto3 version and follows PEP 440 format.

Thank you

Documentation

All services type annotations can be found in boto3 docs

Support and contributing

This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mypy_boto3_iam-1.35.61.tar.gz (79.9 kB view details)

Uploaded Source

Built Distribution

mypy_boto3_iam-1.35.61-py3-none-any.whl (85.9 kB view details)

Uploaded Python 3

File details

Details for the file mypy_boto3_iam-1.35.61.tar.gz.

File metadata

  • Download URL: mypy_boto3_iam-1.35.61.tar.gz
  • Upload date:
  • Size: 79.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for mypy_boto3_iam-1.35.61.tar.gz
Algorithm Hash digest
SHA256 cf307f7fb2404ceda7fda455f6d4cf3bdf57e12a3b16d27101db6223c59e6fe7
MD5 a9da95701789d0ffac34d11d59200aa2
BLAKE2b-256 c810dd881ea65e5c160ffda8d7e0f1ab008ff4706d0632cac4bccc9f4c2bdf67

See more details on using hashes here.

File details

Details for the file mypy_boto3_iam-1.35.61-py3-none-any.whl.

File metadata

File hashes

Hashes for mypy_boto3_iam-1.35.61-py3-none-any.whl
Algorithm Hash digest
SHA256 2b26756fbf1ea3ad57546731b3f2c23780aa5448d1cb05dd80ba30bfc29ad581
MD5 f261cc9a8d0f95b9122cb9341e0dbe2e
BLAKE2b-256 a204caed57c9e38b7f779ea6e498645350d583c60c12eba5e0c74fa8cd237986

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page