types-aiobotocore-cloudformation


Nametypes-aiobotocore-cloudformation JSON
Version 2.11.1 PyPI version JSON
download
home_pagehttps://github.com/youtype/mypy_boto3_builder
SummaryType annotations for aiobotocore.CloudFormation 2.11.1 service generated with mypy-boto3-builder 7.23.1
upload_time2024-01-28 01:22:06
maintainer
docs_urlNone
authorVlad Emelianov
requires_python>=3.8
licenseMIT License
keywords aiobotocore cloudformation type-annotations botocore mypy typeshed autocomplete
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a id="types-aiobotocore-cloudformation"></a>

# types-aiobotocore-cloudformation

[![PyPI - types-aiobotocore-cloudformation](https://img.shields.io/pypi/v/types-aiobotocore-cloudformation.svg?color=blue)](https://pypi.org/project/types-aiobotocore-cloudformation)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-aiobotocore-cloudformation.svg?color=blue)](https://pypi.org/project/types-aiobotocore-cloudformation)
[![Docs](https://img.shields.io/readthedocs/types-aiobotocore.svg?color=blue)](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/)
[![PyPI - Downloads](https://static.pepy.tech/badge/types-aiobotocore-cloudformation)](https://pepy.tech/project/types-aiobotocore-cloudformation)

![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)

Type annotations for
[aiobotocore.CloudFormation 2.11.1](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cloudformation.html#CloudFormation)
service compatible with [VSCode](https://code.visualstudio.com/),
[PyCharm](https://www.jetbrains.com/pycharm/),
[Emacs](https://www.gnu.org/software/emacs/),
[Sublime Text](https://www.sublimetext.com/),
[mypy](https://github.com/python/mypy),
[pyright](https://github.com/microsoft/pyright) and other tools.

Generated by
[mypy-boto3-builder 7.23.1](https://github.com/youtype/mypy_boto3_builder).

More information can be found on
[types-aiobotocore](https://pypi.org/project/types-aiobotocore/) page and in
[types-aiobotocore-cloudformation docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/).

See how it helps to find and fix potential bugs:

![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)

- [types-aiobotocore-cloudformation](#types-aiobotocore-cloudformation)
  - [How to install](#how-to-install)
    - [From PyPI with pip](#from-pypi-with-pip)
  - [How to uninstall](#how-to-uninstall)
  - [Usage](#usage)
    - [VSCode](#vscode)
    - [PyCharm](#pycharm)
    - [Emacs](#emacs)
    - [Sublime Text](#sublime-text)
    - [Other IDEs](#other-ides)
    - [mypy](#mypy)
    - [pyright](#pyright)
  - [Explicit type annotations](#explicit-type-annotations)
    - [Client annotations](#client-annotations)
    - [Paginators annotations](#paginators-annotations)
    - [Waiters annotations](#waiters-annotations)
    - [Service Resource annotations](#service-resource-annotations)
    - [Other resources annotations](#other-resources-annotations)
    - [Collections annotations](#collections-annotations)
    - [Literals](#literals)
    - [Type definitions](#type-definitions)
  - [How it works](#how-it-works)
  - [What's new](#what's-new)
    - [Implemented features](#implemented-features)
    - [Latest changes](#latest-changes)
  - [Versioning](#versioning)
  - [Thank you](#thank-you)
  - [Documentation](#documentation)
  - [Support and contributing](#support-and-contributing)

<a id="how-to-install"></a>

## How to install

<a id="from-pypi-with-pip"></a>

### From PyPI with pip

Install `types-aiobotocore` for `CloudFormation` service.

```bash
# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[cloudformation]'


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


# standalone installation
python -m pip install types-aiobotocore-cloudformation
```

<a id="how-to-uninstall"></a>

## How to uninstall

```bash
python -m pip uninstall -y types-aiobotocore-cloudformation
```

<a id="usage"></a>

## Usage

<a id="vscode"></a>

### VSCode

- Install
  [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
- Install
  [Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
- Set `Pylance` as your Python Language Server
- Install `types-aiobotocore[cloudformation]` in your environment:

```bash
python -m pip install 'types-aiobotocore[cloudformation]'
```

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

<a id="pycharm"></a>

### PyCharm

Install `types-aiobotocore-lite[cloudformation]` in your environment:

```bash
python -m pip install 'types-aiobotocore-lite[cloudformation]'`
```

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

Use `types-aiobotocore` package instead for implicit type discovery.

<a id="emacs"></a>

### Emacs

- Install `types-aiobotocore` with services you use in your environment:

```bash
python -m pip install 'types-aiobotocore[cloudformation]'
```

- Install [use-package](https://github.com/jwiegley/use-package),
  [lsp](https://github.com/emacs-lsp/lsp-mode/),
  [company](https://github.com/company-mode/company-mode) and
  [flycheck](https://github.com/flycheck/flycheck) packages
- Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package

```elisp
(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
  `types-aiobotocore`

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

<a id="sublime-text"></a>

### Sublime Text

- Install `types-aiobotocore[cloudformation]` with services you use in your
  environment:

```bash
python -m pip install 'types-aiobotocore[cloudformation]'
```

- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package

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

<a id="other-ides"></a>

### Other IDEs

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

<a id="mypy"></a>

### mypy

- Install `mypy`: `python -m pip install mypy`
- Install `types-aiobotocore[cloudformation]` in your environment:

```bash
python -m pip install 'types-aiobotocore[cloudformation]'`
```

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

<a id="pyright"></a>

### pyright

- Install `pyright`: `npm i -g pyright`
- Install `types-aiobotocore[cloudformation]` in your environment:

```bash
python -m pip install 'types-aiobotocore[cloudformation]'
```

Optionally, you can install `types-aiobotocore` to `typings` folder.

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

<a id="explicit-type-annotations"></a>

## Explicit type annotations

<a id="client-annotations"></a>

### Client annotations

`CloudFormationClient` provides annotations for
`session.create_client("cloudformation")`.

```python
from aiobotocore.session import get_session

from types_aiobotocore_cloudformation import CloudFormationClient

session = get_session()
async with session.create_client("cloudformation") as client:
    client: CloudFormationClient
    # now client usage is checked by mypy and IDE should provide code completion
```

<a id="paginators-annotations"></a>

### Paginators annotations

`types_aiobotocore_cloudformation.paginator` module contains type annotations
for all paginators.

```python
from aiobotocore.session import get_session

from types_aiobotocore_cloudformation import CloudFormationClient
from types_aiobotocore_cloudformation.paginator import (
    DescribeAccountLimitsPaginator,
    DescribeChangeSetPaginator,
    DescribeStackEventsPaginator,
    DescribeStacksPaginator,
    ListChangeSetsPaginator,
    ListExportsPaginator,
    ListImportsPaginator,
    ListStackInstancesPaginator,
    ListStackResourcesPaginator,
    ListStackSetOperationResultsPaginator,
    ListStackSetOperationsPaginator,
    ListStackSetsPaginator,
    ListStacksPaginator,
    ListTypesPaginator,
)

session = get_session()
async with session.create_client("cloudformation") as client:
    client: CloudFormationClient

    # Explicit type annotations are optional here
    # Types should be correctly discovered by mypy and IDEs
    describe_account_limits_paginator: DescribeAccountLimitsPaginator = client.get_paginator(
        "describe_account_limits"
    )
    describe_change_set_paginator: DescribeChangeSetPaginator = client.get_paginator(
        "describe_change_set"
    )
    describe_stack_events_paginator: DescribeStackEventsPaginator = client.get_paginator(
        "describe_stack_events"
    )
    describe_stacks_paginator: DescribeStacksPaginator = client.get_paginator("describe_stacks")
    list_change_sets_paginator: ListChangeSetsPaginator = client.get_paginator("list_change_sets")
    list_exports_paginator: ListExportsPaginator = client.get_paginator("list_exports")
    list_imports_paginator: ListImportsPaginator = client.get_paginator("list_imports")
    list_stack_instances_paginator: ListStackInstancesPaginator = client.get_paginator(
        "list_stack_instances"
    )
    list_stack_resources_paginator: ListStackResourcesPaginator = client.get_paginator(
        "list_stack_resources"
    )
    list_stack_set_operation_results_paginator: ListStackSetOperationResultsPaginator = (
        client.get_paginator("list_stack_set_operation_results")
    )
    list_stack_set_operations_paginator: ListStackSetOperationsPaginator = client.get_paginator(
        "list_stack_set_operations"
    )
    list_stack_sets_paginator: ListStackSetsPaginator = client.get_paginator("list_stack_sets")
    list_stacks_paginator: ListStacksPaginator = client.get_paginator("list_stacks")
    list_types_paginator: ListTypesPaginator = client.get_paginator("list_types")
```

<a id="waiters-annotations"></a>

### Waiters annotations

`types_aiobotocore_cloudformation.waiter` module contains type annotations for
all waiters.

```python
from aiobotocore.session import get_session

from types_aiobotocore_cloudformation.client import CloudFormationClient
from types_aiobotocore_cloudformation.waiter import (
    ChangeSetCreateCompleteWaiter,
    StackCreateCompleteWaiter,
    StackDeleteCompleteWaiter,
    StackExistsWaiter,
    StackImportCompleteWaiter,
    StackRollbackCompleteWaiter,
    StackUpdateCompleteWaiter,
    TypeRegistrationCompleteWaiter,
)

session = get_session()
async with session.create_client("cloudformation") as client:
    client: CloudFormationClient

    # Explicit type annotations are optional here
    # Types should be correctly discovered by mypy and IDEs
    change_set_create_complete_waiter: ChangeSetCreateCompleteWaiter = client.get_waiter(
        "change_set_create_complete"
    )
    stack_create_complete_waiter: StackCreateCompleteWaiter = client.get_waiter(
        "stack_create_complete"
    )
    stack_delete_complete_waiter: StackDeleteCompleteWaiter = client.get_waiter(
        "stack_delete_complete"
    )
    stack_exists_waiter: StackExistsWaiter = client.get_waiter("stack_exists")
    stack_import_complete_waiter: StackImportCompleteWaiter = client.get_waiter(
        "stack_import_complete"
    )
    stack_rollback_complete_waiter: StackRollbackCompleteWaiter = client.get_waiter(
        "stack_rollback_complete"
    )
    stack_update_complete_waiter: StackUpdateCompleteWaiter = client.get_waiter(
        "stack_update_complete"
    )
    type_registration_complete_waiter: TypeRegistrationCompleteWaiter = client.get_waiter(
        "type_registration_complete"
    )
```

<a id="service-resource-annotations"></a>

### Service Resource annotations

`CloudFormationServiceResource` provides annotations for
`aiobotocore.resource("cloudformation")`.

```python
from aiobotocore.session import get_session

from types_aiobotocore_cloudformation import CloudFormationServiceResource

session = get_session()
async with session.resource("cloudformation") as resource:
    resource: CloudFormationServiceResource
    # now resource usage is checked by mypy and IDE should provide code completion
```

<a id="other-resources-annotations"></a>

### Other resources annotations

`types_aiobotocore_cloudformation.service_resource` module contains type
annotations for all resources.

```python
from aiobotocore.session import get_session

from types_aiobotocore_cloudformation import CloudFormationServiceResource
from types_aiobotocore_cloudformation.service_resource import (
    Event,
    Stack,
    StackResource,
    StackResourceSummary,
)

session = get_session()
async with session.resource("cloudformation") as resource:
    resource: CloudFormationServiceResource

    # Explicit type annotations are optional here
    # Type should be correctly discovered by mypy and IDEs
    my_event: Event = resource.Event(...)
    my_stack: Stack = resource.Stack(...)
    my_stack_resource: StackResource = resource.StackResource(...)
    my_stack_resource_summary: StackResourceSummary = resource.StackResourceSummary(...)
```

<a id="collections-annotations"></a>

### Collections annotations

`types_aiobotocore_cloudformation.service_resource` module contains type
annotations for all `CloudFormationServiceResource` collections.

```python
from aiobotocore.session import get_session

from types_aiobotocore_cloudformation import CloudFormationServiceResource
from types_aiobotocore_cloudformation.service_resource import ServiceResourceStacksCollection

session = get_session()
async with session.resource("cloudformation") as resource:
    resource: CloudFormationServiceResource

    # Explicit type annotations are optional here
    # Type should be correctly discovered by mypy and IDEs
    stacks: cloudformation_resources.ServiceResourceStacksCollection = resource.stacks
```

<a id="literals"></a>

### Literals

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

Full list of `CloudFormation` Literals can be found in
[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/literals/).

```python
from types_aiobotocore_cloudformation.literals import AccountFilterTypeType


def check_value(value: AccountFilterTypeType) -> bool: ...
```

<a id="type-definitions"></a>

### Type definitions

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

Full list of `CloudFormation` TypeDefs can be found in
[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/type_defs/).

```python
from types_aiobotocore_cloudformation.type_defs import AccountGateResultTypeDef


def get_value() -> AccountGateResultTypeDef:
    return {...}
```

<a id="how-it-works"></a>

## How it works

Fully automated
[mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully
generates type annotations for each service, patiently waiting for
`aiobotocore` updates. It delivers drop-in type annotations for you and makes
sure that:

- All available `aiobotocore` services are covered.
- Each public class and method of every `aiobotocore` 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 [black](https://github.com/psf/black) and
  [isort](https://github.com/PyCQA/isort) for readability.

<a id="what's-new"></a>

## What's new

<a id="implemented-features"></a>

### 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

<a id="latest-changes"></a>

### Latest changes

Builder changelog can be found in
[Releases](https://github.com/youtype/mypy_boto3_builder/releases).

<a id="versioning"></a>

## Versioning

`types-aiobotocore-cloudformation` version is the same as related `aiobotocore`
version and follows [PEP 440](https://www.python.org/dev/peps/pep-0440/)
format.

<a id="thank-you"></a>

## Thank you

- [Allie Fitter](https://github.com/alliefitter) for
  [boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),
  this package is based on top of his work
- [black](https://github.com/psf/black) developers for an awesome formatting
  tool
- [Timothy Edmund Crosley](https://github.com/timothycrosley) for
  [isort](https://github.com/PyCQA/isort) and how flexible it is
- [mypy](https://github.com/python/mypy) developers for doing all dirty work
  for us
- [pyright](https://github.com/microsoft/pyright) team for the new era of typed
  Python

<a id="documentation"></a>

## Documentation

All services type annotations can be found in
[aiobotocore docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/)

<a id="support-and-contributing"></a>

## Support and contributing

This package is auto-generated. Please reports any bugs or request new features
in [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)
repository.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/youtype/mypy_boto3_builder",
    "name": "types-aiobotocore-cloudformation",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "aiobotocore cloudformation type-annotations botocore mypy typeshed autocomplete",
    "author": "Vlad Emelianov",
    "author_email": "vlad.emelianov.nz@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8b/cd/f6f196d4dc5d95a1aaed7395edd4ac78a331b7cd020839a17afd39572621/types-aiobotocore-cloudformation-2.11.1.tar.gz",
    "platform": null,
    "description": "<a id=\"types-aiobotocore-cloudformation\"></a>\n\n# types-aiobotocore-cloudformation\n\n[![PyPI - types-aiobotocore-cloudformation](https://img.shields.io/pypi/v/types-aiobotocore-cloudformation.svg?color=blue)](https://pypi.org/project/types-aiobotocore-cloudformation)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-aiobotocore-cloudformation.svg?color=blue)](https://pypi.org/project/types-aiobotocore-cloudformation)\n[![Docs](https://img.shields.io/readthedocs/types-aiobotocore.svg?color=blue)](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/)\n[![PyPI - Downloads](https://static.pepy.tech/badge/types-aiobotocore-cloudformation)](https://pepy.tech/project/types-aiobotocore-cloudformation)\n\n![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)\n\nType annotations for\n[aiobotocore.CloudFormation 2.11.1](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cloudformation.html#CloudFormation)\nservice compatible with [VSCode](https://code.visualstudio.com/),\n[PyCharm](https://www.jetbrains.com/pycharm/),\n[Emacs](https://www.gnu.org/software/emacs/),\n[Sublime Text](https://www.sublimetext.com/),\n[mypy](https://github.com/python/mypy),\n[pyright](https://github.com/microsoft/pyright) and other tools.\n\nGenerated by\n[mypy-boto3-builder 7.23.1](https://github.com/youtype/mypy_boto3_builder).\n\nMore information can be found on\n[types-aiobotocore](https://pypi.org/project/types-aiobotocore/) page and in\n[types-aiobotocore-cloudformation docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/).\n\nSee how it helps to find and fix potential bugs:\n\n![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)\n\n- [types-aiobotocore-cloudformation](#types-aiobotocore-cloudformation)\n  - [How to install](#how-to-install)\n    - [From PyPI with pip](#from-pypi-with-pip)\n  - [How to uninstall](#how-to-uninstall)\n  - [Usage](#usage)\n    - [VSCode](#vscode)\n    - [PyCharm](#pycharm)\n    - [Emacs](#emacs)\n    - [Sublime Text](#sublime-text)\n    - [Other IDEs](#other-ides)\n    - [mypy](#mypy)\n    - [pyright](#pyright)\n  - [Explicit type annotations](#explicit-type-annotations)\n    - [Client annotations](#client-annotations)\n    - [Paginators annotations](#paginators-annotations)\n    - [Waiters annotations](#waiters-annotations)\n    - [Service Resource annotations](#service-resource-annotations)\n    - [Other resources annotations](#other-resources-annotations)\n    - [Collections annotations](#collections-annotations)\n    - [Literals](#literals)\n    - [Type definitions](#type-definitions)\n  - [How it works](#how-it-works)\n  - [What's new](#what's-new)\n    - [Implemented features](#implemented-features)\n    - [Latest changes](#latest-changes)\n  - [Versioning](#versioning)\n  - [Thank you](#thank-you)\n  - [Documentation](#documentation)\n  - [Support and contributing](#support-and-contributing)\n\n<a id=\"how-to-install\"></a>\n\n## How to install\n\n<a id=\"from-pypi-with-pip\"></a>\n\n### From PyPI with pip\n\nInstall `types-aiobotocore` for `CloudFormation` service.\n\n```bash\n# install with aiobotocore type annotations\npython -m pip install 'types-aiobotocore[cloudformation]'\n\n\n# Lite version does not provide session.client/resource overloads\n# it is more RAM-friendly, but requires explicit type annotations\npython -m pip install 'types-aiobotocore-lite[cloudformation]'\n\n\n# standalone installation\npython -m pip install types-aiobotocore-cloudformation\n```\n\n<a id=\"how-to-uninstall\"></a>\n\n## How to uninstall\n\n```bash\npython -m pip uninstall -y types-aiobotocore-cloudformation\n```\n\n<a id=\"usage\"></a>\n\n## Usage\n\n<a id=\"vscode\"></a>\n\n### VSCode\n\n- Install\n  [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)\n- Install\n  [Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)\n- Set `Pylance` as your Python Language Server\n- Install `types-aiobotocore[cloudformation]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[cloudformation]'\n```\n\nBoth type checking and code completion should now work. No explicit type\nannotations required, write your `aiobotocore` code as usual.\n\n<a id=\"pycharm\"></a>\n\n### PyCharm\n\nInstall `types-aiobotocore-lite[cloudformation]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore-lite[cloudformation]'`\n```\n\nBoth type checking and code completion should now work. Explicit type\nannotations **are required**.\n\nUse `types-aiobotocore` package instead for implicit type discovery.\n\n<a id=\"emacs\"></a>\n\n### Emacs\n\n- Install `types-aiobotocore` with services you use in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[cloudformation]'\n```\n\n- Install [use-package](https://github.com/jwiegley/use-package),\n  [lsp](https://github.com/emacs-lsp/lsp-mode/),\n  [company](https://github.com/company-mode/company-mode) and\n  [flycheck](https://github.com/flycheck/flycheck) packages\n- Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package\n\n```elisp\n(use-package lsp-pyright\n  :ensure t\n  :hook (python-mode . (lambda ()\n                          (require 'lsp-pyright)\n                          (lsp)))  ; or lsp-deferred\n  :init (when (executable-find \"python3\")\n          (setq lsp-pyright-python-executable-cmd \"python3\"))\n  )\n```\n\n- Make sure emacs uses the environment where you have installed\n  `types-aiobotocore`\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"sublime-text\"></a>\n\n### Sublime Text\n\n- Install `types-aiobotocore[cloudformation]` with services you use in your\n  environment:\n\n```bash\npython -m pip install 'types-aiobotocore[cloudformation]'\n```\n\n- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"other-ides\"></a>\n\n### Other IDEs\n\nNot tested, but as long as your IDE supports `mypy` or `pyright`, everything\nshould work.\n\n<a id=\"mypy\"></a>\n\n### mypy\n\n- Install `mypy`: `python -m pip install mypy`\n- Install `types-aiobotocore[cloudformation]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[cloudformation]'`\n```\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"pyright\"></a>\n\n### pyright\n\n- Install `pyright`: `npm i -g pyright`\n- Install `types-aiobotocore[cloudformation]` in your environment:\n\n```bash\npython -m pip install 'types-aiobotocore[cloudformation]'\n```\n\nOptionally, you can install `types-aiobotocore` to `typings` folder.\n\nType checking should now work. No explicit type annotations required, write\nyour `aiobotocore` code as usual.\n\n<a id=\"explicit-type-annotations\"></a>\n\n## Explicit type annotations\n\n<a id=\"client-annotations\"></a>\n\n### Client annotations\n\n`CloudFormationClient` provides annotations for\n`session.create_client(\"cloudformation\")`.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_cloudformation import CloudFormationClient\n\nsession = get_session()\nasync with session.create_client(\"cloudformation\") as client:\n    client: CloudFormationClient\n    # now client usage is checked by mypy and IDE should provide code completion\n```\n\n<a id=\"paginators-annotations\"></a>\n\n### Paginators annotations\n\n`types_aiobotocore_cloudformation.paginator` module contains type annotations\nfor all paginators.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_cloudformation import CloudFormationClient\nfrom types_aiobotocore_cloudformation.paginator import (\n    DescribeAccountLimitsPaginator,\n    DescribeChangeSetPaginator,\n    DescribeStackEventsPaginator,\n    DescribeStacksPaginator,\n    ListChangeSetsPaginator,\n    ListExportsPaginator,\n    ListImportsPaginator,\n    ListStackInstancesPaginator,\n    ListStackResourcesPaginator,\n    ListStackSetOperationResultsPaginator,\n    ListStackSetOperationsPaginator,\n    ListStackSetsPaginator,\n    ListStacksPaginator,\n    ListTypesPaginator,\n)\n\nsession = get_session()\nasync with session.create_client(\"cloudformation\") as client:\n    client: CloudFormationClient\n\n    # Explicit type annotations are optional here\n    # Types should be correctly discovered by mypy and IDEs\n    describe_account_limits_paginator: DescribeAccountLimitsPaginator = client.get_paginator(\n        \"describe_account_limits\"\n    )\n    describe_change_set_paginator: DescribeChangeSetPaginator = client.get_paginator(\n        \"describe_change_set\"\n    )\n    describe_stack_events_paginator: DescribeStackEventsPaginator = client.get_paginator(\n        \"describe_stack_events\"\n    )\n    describe_stacks_paginator: DescribeStacksPaginator = client.get_paginator(\"describe_stacks\")\n    list_change_sets_paginator: ListChangeSetsPaginator = client.get_paginator(\"list_change_sets\")\n    list_exports_paginator: ListExportsPaginator = client.get_paginator(\"list_exports\")\n    list_imports_paginator: ListImportsPaginator = client.get_paginator(\"list_imports\")\n    list_stack_instances_paginator: ListStackInstancesPaginator = client.get_paginator(\n        \"list_stack_instances\"\n    )\n    list_stack_resources_paginator: ListStackResourcesPaginator = client.get_paginator(\n        \"list_stack_resources\"\n    )\n    list_stack_set_operation_results_paginator: ListStackSetOperationResultsPaginator = (\n        client.get_paginator(\"list_stack_set_operation_results\")\n    )\n    list_stack_set_operations_paginator: ListStackSetOperationsPaginator = client.get_paginator(\n        \"list_stack_set_operations\"\n    )\n    list_stack_sets_paginator: ListStackSetsPaginator = client.get_paginator(\"list_stack_sets\")\n    list_stacks_paginator: ListStacksPaginator = client.get_paginator(\"list_stacks\")\n    list_types_paginator: ListTypesPaginator = client.get_paginator(\"list_types\")\n```\n\n<a id=\"waiters-annotations\"></a>\n\n### Waiters annotations\n\n`types_aiobotocore_cloudformation.waiter` module contains type annotations for\nall waiters.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_cloudformation.client import CloudFormationClient\nfrom types_aiobotocore_cloudformation.waiter import (\n    ChangeSetCreateCompleteWaiter,\n    StackCreateCompleteWaiter,\n    StackDeleteCompleteWaiter,\n    StackExistsWaiter,\n    StackImportCompleteWaiter,\n    StackRollbackCompleteWaiter,\n    StackUpdateCompleteWaiter,\n    TypeRegistrationCompleteWaiter,\n)\n\nsession = get_session()\nasync with session.create_client(\"cloudformation\") as client:\n    client: CloudFormationClient\n\n    # Explicit type annotations are optional here\n    # Types should be correctly discovered by mypy and IDEs\n    change_set_create_complete_waiter: ChangeSetCreateCompleteWaiter = client.get_waiter(\n        \"change_set_create_complete\"\n    )\n    stack_create_complete_waiter: StackCreateCompleteWaiter = client.get_waiter(\n        \"stack_create_complete\"\n    )\n    stack_delete_complete_waiter: StackDeleteCompleteWaiter = client.get_waiter(\n        \"stack_delete_complete\"\n    )\n    stack_exists_waiter: StackExistsWaiter = client.get_waiter(\"stack_exists\")\n    stack_import_complete_waiter: StackImportCompleteWaiter = client.get_waiter(\n        \"stack_import_complete\"\n    )\n    stack_rollback_complete_waiter: StackRollbackCompleteWaiter = client.get_waiter(\n        \"stack_rollback_complete\"\n    )\n    stack_update_complete_waiter: StackUpdateCompleteWaiter = client.get_waiter(\n        \"stack_update_complete\"\n    )\n    type_registration_complete_waiter: TypeRegistrationCompleteWaiter = client.get_waiter(\n        \"type_registration_complete\"\n    )\n```\n\n<a id=\"service-resource-annotations\"></a>\n\n### Service Resource annotations\n\n`CloudFormationServiceResource` provides annotations for\n`aiobotocore.resource(\"cloudformation\")`.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_cloudformation import CloudFormationServiceResource\n\nsession = get_session()\nasync with session.resource(\"cloudformation\") as resource:\n    resource: CloudFormationServiceResource\n    # now resource usage is checked by mypy and IDE should provide code completion\n```\n\n<a id=\"other-resources-annotations\"></a>\n\n### Other resources annotations\n\n`types_aiobotocore_cloudformation.service_resource` module contains type\nannotations for all resources.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_cloudformation import CloudFormationServiceResource\nfrom types_aiobotocore_cloudformation.service_resource import (\n    Event,\n    Stack,\n    StackResource,\n    StackResourceSummary,\n)\n\nsession = get_session()\nasync with session.resource(\"cloudformation\") as resource:\n    resource: CloudFormationServiceResource\n\n    # Explicit type annotations are optional here\n    # Type should be correctly discovered by mypy and IDEs\n    my_event: Event = resource.Event(...)\n    my_stack: Stack = resource.Stack(...)\n    my_stack_resource: StackResource = resource.StackResource(...)\n    my_stack_resource_summary: StackResourceSummary = resource.StackResourceSummary(...)\n```\n\n<a id=\"collections-annotations\"></a>\n\n### Collections annotations\n\n`types_aiobotocore_cloudformation.service_resource` module contains type\nannotations for all `CloudFormationServiceResource` collections.\n\n```python\nfrom aiobotocore.session import get_session\n\nfrom types_aiobotocore_cloudformation import CloudFormationServiceResource\nfrom types_aiobotocore_cloudformation.service_resource import ServiceResourceStacksCollection\n\nsession = get_session()\nasync with session.resource(\"cloudformation\") as resource:\n    resource: CloudFormationServiceResource\n\n    # Explicit type annotations are optional here\n    # Type should be correctly discovered by mypy and IDEs\n    stacks: cloudformation_resources.ServiceResourceStacksCollection = resource.stacks\n```\n\n<a id=\"literals\"></a>\n\n### Literals\n\n`types_aiobotocore_cloudformation.literals` module contains literals extracted\nfrom shapes that can be used in user code for type checking.\n\nFull list of `CloudFormation` Literals can be found in\n[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/literals/).\n\n```python\nfrom types_aiobotocore_cloudformation.literals import AccountFilterTypeType\n\n\ndef check_value(value: AccountFilterTypeType) -> bool: ...\n```\n\n<a id=\"type-definitions\"></a>\n\n### Type definitions\n\n`types_aiobotocore_cloudformation.type_defs` module contains structures and\nshapes assembled to typed dictionaries and unions for additional type checking.\n\nFull list of `CloudFormation` TypeDefs can be found in\n[docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/type_defs/).\n\n```python\nfrom types_aiobotocore_cloudformation.type_defs import AccountGateResultTypeDef\n\n\ndef get_value() -> AccountGateResultTypeDef:\n    return {...}\n```\n\n<a id=\"how-it-works\"></a>\n\n## How it works\n\nFully automated\n[mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully\ngenerates type annotations for each service, patiently waiting for\n`aiobotocore` updates. It delivers drop-in type annotations for you and makes\nsure that:\n\n- All available `aiobotocore` services are covered.\n- Each public class and method of every `aiobotocore` service gets valid type\n  annotations extracted from `botocore` schemas.\n- Type annotations include up-to-date documentation.\n- Link to documentation is provided for every method.\n- Code is processed by [black](https://github.com/psf/black) and\n  [isort](https://github.com/PyCQA/isort) for readability.\n\n<a id=\"what's-new\"></a>\n\n## What's new\n\n<a id=\"implemented-features\"></a>\n\n### Implemented features\n\n- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`\n  libraries\n- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`\n  compatibility\n- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type\n  annotations for each service\n- Generated `TypeDefs` for each service\n- Generated `Literals` for each service\n- Auto discovery of types for `boto3.client` and `boto3.resource` calls\n- Auto discovery of types for `session.client` and `session.resource` calls\n- Auto discovery of types for `client.get_waiter` and `client.get_paginator`\n  calls\n- Auto discovery of types for `ServiceResource` and `Resource` collections\n- Auto discovery of types for `aiobotocore.Session.create_client` calls\n\n<a id=\"latest-changes\"></a>\n\n### Latest changes\n\nBuilder changelog can be found in\n[Releases](https://github.com/youtype/mypy_boto3_builder/releases).\n\n<a id=\"versioning\"></a>\n\n## Versioning\n\n`types-aiobotocore-cloudformation` version is the same as related `aiobotocore`\nversion and follows [PEP 440](https://www.python.org/dev/peps/pep-0440/)\nformat.\n\n<a id=\"thank-you\"></a>\n\n## Thank you\n\n- [Allie Fitter](https://github.com/alliefitter) for\n  [boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),\n  this package is based on top of his work\n- [black](https://github.com/psf/black) developers for an awesome formatting\n  tool\n- [Timothy Edmund Crosley](https://github.com/timothycrosley) for\n  [isort](https://github.com/PyCQA/isort) and how flexible it is\n- [mypy](https://github.com/python/mypy) developers for doing all dirty work\n  for us\n- [pyright](https://github.com/microsoft/pyright) team for the new era of typed\n  Python\n\n<a id=\"documentation\"></a>\n\n## Documentation\n\nAll services type annotations can be found in\n[aiobotocore docs](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/)\n\n<a id=\"support-and-contributing\"></a>\n\n## Support and contributing\n\nThis package is auto-generated. Please reports any bugs or request new features\nin [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)\nrepository.\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Type annotations for aiobotocore.CloudFormation 2.11.1 service generated with mypy-boto3-builder 7.23.1",
    "version": "2.11.1",
    "project_urls": {
        "Documentation": "https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_cloudformation/",
        "Homepage": "https://github.com/youtype/mypy_boto3_builder",
        "Source": "https://github.com/youtype/mypy_boto3_builder",
        "Tracker": "https://github.com/youtype/mypy_boto3_builder/issues"
    },
    "split_keywords": [
        "aiobotocore",
        "cloudformation",
        "type-annotations",
        "botocore",
        "mypy",
        "typeshed",
        "autocomplete"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c969cbaae3a6cef7ec5285db8924e8542abecb1572edc5e2c248d32703079aaa",
                "md5": "5fb640e8ca626d53fa33697b38a36836",
                "sha256": "2bbfd3467c839293a439622f46f573b263ebcb4208106324450a2de563ce89ee"
            },
            "downloads": -1,
            "filename": "types_aiobotocore_cloudformation-2.11.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5fb640e8ca626d53fa33697b38a36836",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 64310,
            "upload_time": "2024-01-28T01:22:04",
            "upload_time_iso_8601": "2024-01-28T01:22:04.584016Z",
            "url": "https://files.pythonhosted.org/packages/c9/69/cbaae3a6cef7ec5285db8924e8542abecb1572edc5e2c248d32703079aaa/types_aiobotocore_cloudformation-2.11.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bcdf6f196d4dc5d95a1aaed7395edd4ac78a331b7cd020839a17afd39572621",
                "md5": "cc6f38bc003ea7fcb7e6166f2a66a5fb",
                "sha256": "9f525514ba11d826d539a51f44ac7636cdb3ec1029e195053707754e48ced288"
            },
            "downloads": -1,
            "filename": "types-aiobotocore-cloudformation-2.11.1.tar.gz",
            "has_sig": false,
            "md5_digest": "cc6f38bc003ea7fcb7e6166f2a66a5fb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 52149,
            "upload_time": "2024-01-28T01:22:06",
            "upload_time_iso_8601": "2024-01-28T01:22:06.469680Z",
            "url": "https://files.pythonhosted.org/packages/8b/cd/f6f196d4dc5d95a1aaed7395edd4ac78a331b7cd020839a17afd39572621/types-aiobotocore-cloudformation-2.11.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-28 01:22:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "youtype",
    "github_project": "mypy_boto3_builder",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "types-aiobotocore-cloudformation"
}
        
Elapsed time: 0.17589s