Type annotations for boto3.CodeDeploy 1.28.12 service generated with mypy-boto3-builder 7.15.2
Project description
mypy-boto3-codedeploy
Type annotations for boto3.CodeDeploy 1.28.12 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.
Generated by mypy-boto3-builder 7.15.2.
More information can be found on boto3-stubs page and in mypy-boto3-codedeploy docs.
See how it helps to find and fix potential bugs:
- mypy-boto3-codedeploy
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 CodeDeploy.
From PyPI with pip
Install boto3-stubs for CodeDeploy service.
# install with boto3 type annotations
python -m pip install 'boto3-stubs[codedeploy]'
# 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[codedeploy]'
# standalone installation
python -m pip install mypy-boto3-codedeploy
How to uninstall
python -m pip uninstall -y mypy-boto3-codedeploy
Usage
VSCode
- Install Python extension
- Install Pylance extension
- Set
Pylanceas your Python Language Server - Install
boto3-stubs[codedeploy]in your environment:
python -m pip install 'boto3-stubs[codedeploy]'
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[codedeploy] in your environment:
python -m pip install 'boto3-stubs-lite[codedeploy]'`
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-stubswith services you use in your environment:
python -m pip install 'boto3-stubs[codedeploy]'
- Install use-package, lsp, company and flycheck packages
- Install lsp-pyright package
(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[codedeploy]with services you use in your environment:
python -m pip install 'boto3-stubs[codedeploy]'
- Install LSP-pyright package
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[codedeploy]in your environment:
python -m pip install 'boto3-stubs[codedeploy]'`
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[codedeploy]in your environment:
python -m pip install 'boto3-stubs[codedeploy]'
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.
Explicit type annotations
Client annotations
CodeDeployClient provides annotations for boto3.client("codedeploy").
from boto3.session import Session
from mypy_boto3_codedeploy import CodeDeployClient
client: CodeDeployClient = Session().client("codedeploy")
# now client usage is checked by mypy and IDE should provide code completion
Paginators annotations
mypy_boto3_codedeploy.paginator module contains type annotations for all
paginators.
from boto3.session import Session
from mypy_boto3_codedeploy import CodeDeployClient
from mypy_boto3_codedeploy.paginator import (
ListApplicationRevisionsPaginator,
ListApplicationsPaginator,
ListDeploymentConfigsPaginator,
ListDeploymentGroupsPaginator,
ListDeploymentInstancesPaginator,
ListDeploymentTargetsPaginator,
ListDeploymentsPaginator,
ListGitHubAccountTokenNamesPaginator,
ListOnPremisesInstancesPaginator,
)
client: CodeDeployClient = Session().client("codedeploy")
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
list_application_revisions_paginator: ListApplicationRevisionsPaginator = client.get_paginator(
"list_application_revisions"
)
list_applications_paginator: ListApplicationsPaginator = client.get_paginator("list_applications")
list_deployment_configs_paginator: ListDeploymentConfigsPaginator = client.get_paginator(
"list_deployment_configs"
)
list_deployment_groups_paginator: ListDeploymentGroupsPaginator = client.get_paginator(
"list_deployment_groups"
)
list_deployment_instances_paginator: ListDeploymentInstancesPaginator = client.get_paginator(
"list_deployment_instances"
)
list_deployment_targets_paginator: ListDeploymentTargetsPaginator = client.get_paginator(
"list_deployment_targets"
)
list_deployments_paginator: ListDeploymentsPaginator = client.get_paginator("list_deployments")
list_git_hub_account_token_names_paginator: ListGitHubAccountTokenNamesPaginator = (
client.get_paginator("list_git_hub_account_token_names")
)
list_on_premises_instances_paginator: ListOnPremisesInstancesPaginator = client.get_paginator(
"list_on_premises_instances"
)
Waiters annotations
mypy_boto3_codedeploy.waiter module contains type annotations for all
waiters.
from boto3.session import Session
from mypy_boto3_codedeploy import CodeDeployClient
from mypy_boto3_codedeploy.waiter import DeploymentSuccessfulWaiter
client: CodeDeployClient = Session().client("codedeploy")
# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
deployment_successful_waiter: DeploymentSuccessfulWaiter = client.get_waiter(
"deployment_successful"
)
Literals
mypy_boto3_codedeploy.literals module contains literals extracted from shapes
that can be used in user code for type checking.
from mypy_boto3_codedeploy.literals import (
ApplicationRevisionSortByType,
AutoRollbackEventType,
BundleTypeType,
ComputePlatformType,
DeploymentCreatorType,
DeploymentOptionType,
DeploymentReadyActionType,
DeploymentStatusType,
DeploymentSuccessfulWaiterName,
DeploymentTargetTypeType,
DeploymentTypeType,
DeploymentWaitTypeType,
EC2TagFilterTypeType,
ErrorCodeType,
FileExistsBehaviorType,
GreenFleetProvisioningActionType,
InstanceActionType,
InstanceStatusType,
InstanceTypeType,
LifecycleErrorCodeType,
LifecycleEventStatusType,
ListApplicationRevisionsPaginatorName,
ListApplicationsPaginatorName,
ListDeploymentConfigsPaginatorName,
ListDeploymentGroupsPaginatorName,
ListDeploymentInstancesPaginatorName,
ListDeploymentTargetsPaginatorName,
ListDeploymentsPaginatorName,
ListGitHubAccountTokenNamesPaginatorName,
ListOnPremisesInstancesPaginatorName,
ListStateFilterActionType,
MinimumHealthyHostsTypeType,
OutdatedInstancesStrategyType,
RegistrationStatusType,
RevisionLocationTypeType,
SortOrderType,
StopStatusType,
TagFilterTypeType,
TargetFilterNameType,
TargetLabelType,
TargetStatusType,
TrafficRoutingTypeType,
TriggerEventTypeType,
CodeDeployServiceName,
ServiceName,
ResourceServiceName,
PaginatorName,
WaiterName,
RegionName,
)
def check_value(value: ApplicationRevisionSortByType) -> bool:
...
Typed dictionaries
mypy_boto3_codedeploy.type_defs module contains structures and shapes
assembled to typed dictionaries for additional type checking.
from mypy_boto3_codedeploy.type_defs import (
TagTypeDef,
AlarmOutputTypeDef,
AlarmTypeDef,
AppSpecContentOutputTypeDef,
AppSpecContentTypeDef,
ApplicationInfoTypeDef,
AutoRollbackConfigurationOutputTypeDef,
AutoRollbackConfigurationTypeDef,
AutoScalingGroupTypeDef,
BatchGetApplicationsInputRequestTypeDef,
BatchGetDeploymentGroupsInputRequestTypeDef,
BatchGetDeploymentInstancesInputRequestTypeDef,
BatchGetDeploymentTargetsInputRequestTypeDef,
BatchGetDeploymentsInputRequestTypeDef,
BatchGetOnPremisesInstancesInputRequestTypeDef,
BlueInstanceTerminationOptionOutputTypeDef,
DeploymentReadyOptionOutputTypeDef,
GreenFleetProvisioningOptionOutputTypeDef,
BlueInstanceTerminationOptionTypeDef,
DeploymentReadyOptionTypeDef,
GreenFleetProvisioningOptionTypeDef,
ContinueDeploymentInputRequestTypeDef,
CreateApplicationOutputTypeDef,
MinimumHealthyHostsTypeDef,
CreateDeploymentConfigOutputTypeDef,
DeploymentStyleTypeDef,
EC2TagFilterTypeDef,
ECSServiceTypeDef,
TagFilterTypeDef,
TriggerConfigTypeDef,
CreateDeploymentGroupOutputTypeDef,
CreateDeploymentOutputTypeDef,
DeleteApplicationInputRequestTypeDef,
DeleteDeploymentConfigInputRequestTypeDef,
DeleteDeploymentGroupInputRequestTypeDef,
DeleteGitHubAccountTokenInputRequestTypeDef,
DeleteGitHubAccountTokenOutputTypeDef,
DeleteResourcesByExternalIdInputRequestTypeDef,
MinimumHealthyHostsOutputTypeDef,
DeploymentStyleOutputTypeDef,
EC2TagFilterOutputTypeDef,
ECSServiceOutputTypeDef,
LastDeploymentInfoTypeDef,
TagFilterOutputTypeDef,
TriggerConfigOutputTypeDef,
DeploymentOverviewTypeDef,
ErrorInformationTypeDef,
RelatedDeploymentsTypeDef,
RollbackInfoTypeDef,
DeregisterOnPremisesInstanceInputRequestTypeDef,
DiagnosticsTypeDef,
TargetGroupInfoOutputTypeDef,
ELBInfoOutputTypeDef,
ELBInfoTypeDef,
EmptyResponseMetadataTypeDef,
GenericRevisionInfoTypeDef,
GetApplicationInputRequestTypeDef,
GetDeploymentConfigInputRequestTypeDef,
GetDeploymentGroupInputRequestTypeDef,
WaiterConfigTypeDef,
GetDeploymentInputRequestTypeDef,
GetDeploymentInstanceInputRequestTypeDef,
GetDeploymentTargetInputRequestTypeDef,
GetOnPremisesInstanceInputRequestTypeDef,
GitHubLocationOutputTypeDef,
GitHubLocationTypeDef,
TagOutputTypeDef,
LambdaFunctionInfoTypeDef,
ListApplicationRevisionsInputListApplicationRevisionsPaginateTypeDef,
ListApplicationRevisionsInputRequestTypeDef,
ListApplicationsInputListApplicationsPaginateTypeDef,
ListApplicationsInputRequestTypeDef,
ListApplicationsOutputTypeDef,
ListDeploymentConfigsInputListDeploymentConfigsPaginateTypeDef,
ListDeploymentConfigsInputRequestTypeDef,
ListDeploymentConfigsOutputTypeDef,
ListDeploymentGroupsInputListDeploymentGroupsPaginateTypeDef,
ListDeploymentGroupsInputRequestTypeDef,
ListDeploymentGroupsOutputTypeDef,
ListDeploymentInstancesInputListDeploymentInstancesPaginateTypeDef,
ListDeploymentInstancesInputRequestTypeDef,
ListDeploymentInstancesOutputTypeDef,
ListDeploymentTargetsInputListDeploymentTargetsPaginateTypeDef,
ListDeploymentTargetsInputRequestTypeDef,
ListDeploymentTargetsOutputTypeDef,
TimeRangeTypeDef,
ListDeploymentsOutputTypeDef,
ListGitHubAccountTokenNamesInputListGitHubAccountTokenNamesPaginateTypeDef,
ListGitHubAccountTokenNamesInputRequestTypeDef,
ListGitHubAccountTokenNamesOutputTypeDef,
ListOnPremisesInstancesOutputTypeDef,
ListTagsForResourceInputRequestTypeDef,
TargetGroupInfoTypeDef,
PaginatorConfigTypeDef,
PutLifecycleEventHookExecutionStatusInputRequestTypeDef,
PutLifecycleEventHookExecutionStatusOutputTypeDef,
RawStringOutputTypeDef,
RawStringTypeDef,
RegisterOnPremisesInstanceInputRequestTypeDef,
ResponseMetadataTypeDef,
S3LocationOutputTypeDef,
S3LocationTypeDef,
SkipWaitTimeForInstanceTerminationInputRequestTypeDef,
StopDeploymentInputRequestTypeDef,
StopDeploymentOutputTypeDef,
TrafficRouteOutputTypeDef,
TrafficRouteTypeDef,
TimeBasedCanaryOutputTypeDef,
TimeBasedCanaryTypeDef,
TimeBasedLinearOutputTypeDef,
TimeBasedLinearTypeDef,
UntagResourceInputRequestTypeDef,
UpdateApplicationInputRequestTypeDef,
AddTagsToOnPremisesInstancesInputRequestTypeDef,
CreateApplicationInputRequestTypeDef,
RemoveTagsFromOnPremisesInstancesInputRequestTypeDef,
TagResourceInputRequestTypeDef,
AlarmConfigurationOutputTypeDef,
AlarmConfigurationTypeDef,
BatchGetApplicationsOutputTypeDef,
GetApplicationOutputTypeDef,
DeleteDeploymentGroupOutputTypeDef,
UpdateDeploymentGroupOutputTypeDef,
BlueGreenDeploymentConfigurationOutputTypeDef,
BlueGreenDeploymentConfigurationTypeDef,
EC2TagSetTypeDef,
ListOnPremisesInstancesInputListOnPremisesInstancesPaginateTypeDef,
ListOnPremisesInstancesInputRequestTypeDef,
OnPremisesTagSetTypeDef,
EC2TagSetOutputTypeDef,
OnPremisesTagSetOutputTypeDef,
LifecycleEventTypeDef,
ECSTaskSetTypeDef,
GetDeploymentInputDeploymentSuccessfulWaitTypeDef,
InstanceInfoTypeDef,
ListTagsForResourceOutputTypeDef,
ListDeploymentsInputListDeploymentsPaginateTypeDef,
ListDeploymentsInputRequestTypeDef,
RevisionLocationOutputTypeDef,
RevisionLocationTypeDef,
TargetGroupPairInfoOutputTypeDef,
TargetGroupPairInfoTypeDef,
TrafficRoutingConfigOutputTypeDef,
TrafficRoutingConfigTypeDef,
TargetInstancesTypeDef,
TargetInstancesOutputTypeDef,
CloudFormationTargetTypeDef,
InstanceSummaryTypeDef,
InstanceTargetTypeDef,
LambdaTargetTypeDef,
ECSTargetTypeDef,
BatchGetOnPremisesInstancesOutputTypeDef,
GetOnPremisesInstanceOutputTypeDef,
GetApplicationRevisionOutputTypeDef,
ListApplicationRevisionsOutputTypeDef,
RevisionInfoTypeDef,
BatchGetApplicationRevisionsInputRequestTypeDef,
GetApplicationRevisionInputRequestTypeDef,
RegisterApplicationRevisionInputRequestTypeDef,
LoadBalancerInfoOutputTypeDef,
LoadBalancerInfoTypeDef,
DeploymentConfigInfoTypeDef,
CreateDeploymentConfigInputRequestTypeDef,
CreateDeploymentInputRequestTypeDef,
BatchGetDeploymentInstancesOutputTypeDef,
GetDeploymentInstanceOutputTypeDef,
DeploymentTargetTypeDef,
BatchGetApplicationRevisionsOutputTypeDef,
DeploymentGroupInfoTypeDef,
DeploymentInfoTypeDef,
CreateDeploymentGroupInputRequestTypeDef,
UpdateDeploymentGroupInputRequestTypeDef,
GetDeploymentConfigOutputTypeDef,
BatchGetDeploymentTargetsOutputTypeDef,
GetDeploymentTargetOutputTypeDef,
BatchGetDeploymentGroupsOutputTypeDef,
GetDeploymentGroupOutputTypeDef,
BatchGetDeploymentsOutputTypeDef,
GetDeploymentOutputTypeDef,
)
def get_structure() -> TagTypeDef:
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
boto3services are covered. - Each public class and method of every
boto3service gets valid type annotations extracted frombotocoreschemas. - Type annotations include up-to-date documentation.
- Link to documentation is provided for every method.
- Code is processed by black and isort for readability.
What's new
Implemented features
- Fully type annotated
boto3,botocore,aiobotocoreandaioboto3libraries mypy,pyright,VSCode,PyCharm,Sublime TextandEmacscompatibilityClient,ServiceResource,Resource,WaiterPaginatortype annotations for each service- Generated
TypeDefsfor each service - Generated
Literalsfor each service - Auto discovery of types for
boto3.clientandboto3.resourcecalls - Auto discovery of types for
session.clientandsession.resourcecalls - Auto discovery of types for
client.get_waiterandclient.get_paginatorcalls - Auto discovery of types for
ServiceResourceandResourcecollections - Auto discovery of types for
aiobotocore.Session.create_clientcalls
Latest changes
Builder changelog can be found in Releases.
Versioning
mypy-boto3-codedeploy version is the same as related boto3 version and
follows PEP 440 format.
Thank you
- Allie Fitter for boto3-type-annotations, this package is based on top of his work
- black developers for an awesome formatting tool
- Timothy Edmund Crosley for isort and how flexible it is
- mypy developers for doing all dirty work for us
- pyright team for the new era of typed Python
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mypy-boto3-codedeploy-1.28.12.tar.gz.
File metadata
- Download URL: mypy-boto3-codedeploy-1.28.12.tar.gz
- Upload date:
- Size: 40.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3a63ae493b387f10f8951501d764d4c3ed45bf53aa55d2bf098e2995d2fe5f3
|
|
| MD5 |
80b689677261d7bdf6651093089b3384
|
|
| BLAKE2b-256 |
e90c41b1ef947375a016bea7eee3ae41b0f37bcb852d0340918aa82850038b82
|
File details
Details for the file mypy_boto3_codedeploy-1.28.12-py3-none-any.whl.
File metadata
- Download URL: mypy_boto3_codedeploy-1.28.12-py3-none-any.whl
- Upload date:
- Size: 46.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62582f3ce3e0f1493e8879b429037be71d639c1189a2c65a68d4193f0fa0df10
|
|
| MD5 |
59b309505f120f7941cd0e9e3f472c30
|
|
| BLAKE2b-256 |
5f1eb8b45b3aea961daff6d5d559e6abdee70230faa886b255bc09929a0f7f22
|