Skip to content

ApplicationAutoScaling module

Index > ApplicationAutoScaling

Auto-generated documentation for ApplicationAutoScaling type annotations stubs module mypy-boto3-application-autoscaling.

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 ApplicationAutoScaling.

From PyPI with pip

Install boto3-stubs for ApplicationAutoScaling service.

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


# 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[application-autoscaling]'


# standalone installation
python -m pip install mypy-boto3-application-autoscaling

How to uninstall

python -m pip uninstall -y mypy-boto3-application-autoscaling

Usage

Code samples can be found in Examples.

ApplicationAutoScalingClient

Type annotations and code completion for boto3.client("application-autoscaling") as ApplicationAutoScalingClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_application_autoscaling.client import ApplicationAutoScalingClient

def get_client() -> ApplicationAutoScalingClient:
    return Session().client("application-autoscaling")

Paginators

Type annotations and code completion for paginators from boto3.client("application-autoscaling").get_paginator("...").

Usage example
from boto3.session import Session

from mypy_boto3_application_autoscaling.paginator import DescribeScalableTargetsPaginator

def get_describe_scalable_targets_paginator() -> DescribeScalableTargetsPaginator:
    return Session().client("application-autoscaling").get_paginator("describe_scalable_targets"))

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_application_autoscaling.literals import AdjustmentTypeType

def get_value() -> AdjustmentTypeType:
    return "ChangeInCapacity"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_application_autoscaling.type_defs import AlarmTypeDef

def get_value() -> AlarmTypeDef:
    return {
        "AlarmName": ...,
        "AlarmARN": ...,
    }