<a id="mypy-boto3-codestar-connections"></a>
# mypy-boto3-codestar-connections
[![PyPI - mypy-boto3-codestar-connections](https://img.shields.io/pypi/v/mypy-boto3-codestar-connections.svg?color=blue)](https://pypi.org/project/mypy-boto3-codestar-connections)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mypy-boto3-codestar-connections.svg?color=blue)](https://pypi.org/project/mypy-boto3-codestar-connections)
[![Docs](https://img.shields.io/readthedocs/mypy-boto3-builder.svg?color=blue)](https://mypy-boto3-builder.readthedocs.io/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/mypy-boto3-codestar-connections?color=blue)](https://pypistats.org/packages/mypy-boto3-codestar-connections)
![boto3.typed](https://github.com/vemel/mypy_boto3_builder/raw/main/logo.png)
Type annotations for
[boto3.CodeStarconnections 1.21.23](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/codestar-connections.html#CodeStarconnections)
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.4.0](https://github.com/vemel/mypy_boto3_builder).
More information can be found on
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
[mypy-boto3-codestar-connections docs](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_codestar_connections/)
See how it helps to find and fix potential bugs:
![boto3-stubs demo](https://github.com/vemel/mypy_boto3_builder/raw/main/demo.gif)
- [mypy-boto3-codestar-connections](#mypy-boto3-codestar-connections)
- [How to install](#how-to-install)
- [VSCode extension](#vscode-extension)
- [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)
- [Literals](#literals)
- [Typed dictionaries](#typed-dictionaries)
- [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="vscode-extension"></a>
### VSCode extension
Add
[AWS Boto3](https://marketplace.visualstudio.com/items?itemName=Boto3typed.boto3-ide)
extension to your VSCode and run `AWS boto3: Quick Start` command.
Click `Modify` and select `boto3 common` and `CodeStarconnections`.
<a id="from-pypi-with-pip"></a>
### From PyPI with pip
Install `boto3-stubs` for `CodeStarconnections` service.
```bash
# install with boto3 type annotations
python -m pip install 'boto3-stubs[codestar-connections]'
# 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[codestar-connections]'
# standalone installation
python -m pip install mypy-boto3-codestar-connections
```
<a id="how-to-uninstall"></a>
## How to uninstall
```bash
python -m pip uninstall -y mypy-boto3-codestar-connections
```
<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 `boto3-stubs[codestar-connections]` in your environment:
```bash
python -m pip install 'boto3-stubs[codestar-connections]'
```
Both type checking and code completion should now work. No explicit type
annotations required, write your `boto3` code as usual.
<a id="pycharm"></a>
### PyCharm
Install `boto3-stubs-lite[codestar-connections]` in your environment:
```bash
python -m pip install 'boto3-stubs-lite[codestar-connections]'`
```
Both type checking and code completion should now work. Explicit type
annotations **are required**.
Use `boto3-stubs` package instead for implicit type discovery.
<a id="emacs"></a>
### Emacs
- Install `boto3-stubs` with services you use in your environment:
```bash
python -m pip install 'boto3-stubs[codestar-connections]'
```
- 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 `boto3-stubs`
Type checking should now work. No explicit type annotations required, write
your `boto3` code as usual.
<a id="sublime-text"></a>
### Sublime Text
- Install `boto3-stubs[codestar-connections]` with services you use in your
environment:
```bash
python -m pip install 'boto3-stubs[codestar-connections]'
```
- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package
Type checking should now work. No explicit type annotations required, write
your `boto3` 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 `boto3-stubs[codestar-connections]` in your environment:
```bash
python -m pip install 'boto3-stubs[codestar-connections]'`
```
Type checking should now work. No explicit type annotations required, write
your `boto3` code as usual.
<a id="pyright"></a>
### pyright
- Install `pyright`: `npm i -g pyright`
- Install `boto3-stubs[codestar-connections]` in your environment:
```bash
python -m pip install 'boto3-stubs[codestar-connections]'
```
Optionally, you can install `boto3-stubs` to `typings` folder.
Type checking should now work. No explicit type annotations required, write
your `boto3` code as usual.
<a id="explicit-type-annotations"></a>
## Explicit type annotations
<a id="client-annotations"></a>
### Client annotations
`CodeStarconnectionsClient` provides annotations for
`boto3.client("codestar-connections")`.
```python
from boto3.session import Session
from mypy_boto3_codestar_connections import CodeStarconnectionsClient
client: CodeStarconnectionsClient = Session().client("codestar-connections")
# now client usage is checked by mypy and IDE should provide code completion
```
<a id="literals"></a>
### Literals
`mypy_boto3_codestar_connections.literals` module contains literals extracted
from shapes that can be used in user code for type checking.
```python
from mypy_boto3_codestar_connections.literals import (
ConnectionStatusType,
ProviderTypeType,
CodeStarconnectionsServiceName,
ServiceName,
ResourceServiceName,
)
def check_value(value: ConnectionStatusType) -> bool:
...
```
<a id="typed-dictionaries"></a>
### Typed dictionaries
`mypy_boto3_codestar_connections.type_defs` module contains structures and
shapes assembled to typed dictionaries for additional type checking.
```python
from mypy_boto3_codestar_connections.type_defs import (
ConnectionTypeDef,
CreateConnectionInputRequestT
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
最新资源
- JAVA在线考试管理系统(源代码+论文+开题报告+外文翻译+英文文献+答辩PPT)
- java 论坛系统 源码下载
- 三相PWM整流器MATLAB Simulink 电压外环、电流内环双环解耦控制 SPWM调制 网侧电流波形THD<5%,实现单位功率因素并网 负载电压稳定在750V
- 基于java+springboot+vue+mysql的宠物商城平台 源码+数据库+论文(高分毕业设计).zip
- 基于java+springboot+vue+mysql的茶叶商城系统 源码+数据库+论文(高分毕业设计).zip
- 湖南科技大学EDA数字系统设计与VHDL课程大作业的数字频率计设计(压缩包包括源码、视频和报告)
- seata环境配置文件夹
- 2025/华三/H3CNE安全GB0-510
- java银行帐目管理系统(源代码+论文)
- 基于java+springboot+vue+mysql的扶贫众筹网 源码+数据库+论文(高分毕业设计).zip
- 基于维纳过程模型的剩余使用寿命预测 1.蒙特卡洛方法模拟部件的 化轨迹代码 2.线性维纳模型预测剩余使用寿命的代码及文章参考 3.非线性维纳模型预测剩余使用寿命的代码及文章参考 4.MLE估计算法代码
- 基于java+springboot+vue+mysql的大学生就业信息管理系统 源码+数据库+论文(高分毕业设计).zip
- 基于java+springboot+vue+mysql的电池销售系统 源码+数据库+论文(高分毕业设计).zip
- 基于强化学习的永磁同步电机位置控制器simulink仿真,对比传统的PI控制器和模糊PI控制器
- 基于java+springboot+vue+mysql的高校素拓分管理系统 源码+数据库+论文(高分毕业设计).rar
- 基于java+springboot+vue+mysql的海产品销售系统 源码+数据库+论文(高分毕业设计).zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈