Skip to content

ApplicationAutoScalingClient#

Index > ApplicationAutoScaling > ApplicationAutoScalingClient

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

ApplicationAutoScalingClient#

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

# ApplicationAutoScalingClient usage example

from boto3.session import Session
from mypy_boto3_application_autoscaling.client import ApplicationAutoScalingClient

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

Exceptions#

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("application-autoscaling").exceptions structure.

# Exceptions.exceptions usage example

client = boto3.client("application-autoscaling")

try:
    do_something(client)
except (
    client.exceptions.ClientError,
    client.exceptions.ConcurrentUpdateException,
    client.exceptions.FailedResourceAccessException,
    client.exceptions.InternalServiceException,
    client.exceptions.InvalidNextTokenException,
    client.exceptions.LimitExceededException,
    client.exceptions.ObjectNotFoundException,
    client.exceptions.ResourceNotFoundException,
    client.exceptions.TooManyTagsException,
    client.exceptions.ValidationException,
) as e:
    print(e)
# Exceptions.exceptions type checking example

from mypy_boto3_application_autoscaling.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods#

can_paginate#

Check if an operation can be paginated.

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

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close#

Closes underlying endpoint connections.

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

# close method definition

def close(
    self,
) -> None:
    ...

delete_scaling_policy#

Deletes the specified scaling policy for an Application Auto Scaling scalable target.

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

# delete_scaling_policy method definition

def delete_scaling_policy(
    self,
    *,
    PolicyName: str,
    ServiceNamespace: ServiceNamespaceType,  # (1)
    ResourceId: str,
    ScalableDimension: ScalableDimensionType,  # (2)
) -> Dict[str, Any]:
    ...
  1. See ServiceNamespaceType
  2. See ScalableDimensionType
# delete_scaling_policy method usage example with argument unpacking

kwargs: DeleteScalingPolicyRequestRequestTypeDef = {  # (1)
    "PolicyName": ...,
    "ServiceNamespace": ...,
    "ResourceId": ...,
    "ScalableDimension": ...,
}

parent.delete_scaling_policy(**kwargs)
  1. See DeleteScalingPolicyRequestRequestTypeDef

delete_scheduled_action#

Deletes the specified scheduled action for an Application Auto Scaling scalable target.

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

# delete_scheduled_action method definition

def delete_scheduled_action(
    self,
    *,
    ServiceNamespace: ServiceNamespaceType,  # (1)
    ScheduledActionName: str,
    ResourceId: str,
    ScalableDimension: ScalableDimensionType,  # (2)
) -> Dict[str, Any]:
    ...
  1. See ServiceNamespaceType
  2. See ScalableDimensionType
# delete_scheduled_action method usage example with argument unpacking

kwargs: DeleteScheduledActionRequestRequestTypeDef = {  # (1)
    "ServiceNamespace": ...,
    "ScheduledActionName": ...,
    "ResourceId": ...,
    "ScalableDimension": ...,
}

parent.delete_scheduled_action(**kwargs)
  1. See DeleteScheduledActionRequestRequestTypeDef

deregister_scalable_target#

Deregisters an Application Auto Scaling scalable target when you have finished using it.

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

# deregister_scalable_target method definition

def deregister_scalable_target(
    self,
    *,
    ServiceNamespace: ServiceNamespaceType,  # (1)
    ResourceId: str,
    ScalableDimension: ScalableDimensionType,  # (2)
) -> Dict[str, Any]:
    ...
  1. See ServiceNamespaceType
  2. See ScalableDimensionType
# deregister_scalable_target method usage example with argument unpacking

kwargs: DeregisterScalableTargetRequestRequestTypeDef = {  # (1)
    "ServiceNamespace": ...,
    "ResourceId": ...,
    "ScalableDimension": ...,
}

parent.deregister_scalable_target(**kwargs)
  1. See DeregisterScalableTargetRequestRequestTypeDef

describe_scalable_targets#

Gets information about the scalable targets in the specified namespace.

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

# describe_scalable_targets method definition

def describe_scalable_targets(
    self,
    *,
    ServiceNamespace: ServiceNamespaceType,  # (1)
    ResourceIds: Sequence[str] = ...,
    ScalableDimension: ScalableDimensionType = ...,  # (2)
    MaxResults: int = ...,
    NextToken: str = ...,
) -> DescribeScalableTargetsResponseTypeDef:  # (3)
    ...
  1. See ServiceNamespaceType
  2. See ScalableDimensionType
  3. See DescribeScalableTargetsResponseTypeDef
# describe_scalable_targets method usage example with argument unpacking

kwargs: DescribeScalableTargetsRequestRequestTypeDef = {  # (1)
    "ServiceNamespace": ...,
}

parent.describe_scalable_targets(**kwargs)
  1. See DescribeScalableTargetsRequestRequestTypeDef

describe_scaling_activities#

Provides descriptive information about the scaling activities in the specified namespace from the previous six weeks.

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

# describe_scaling_activities method definition

def describe_scaling_activities(
    self,
    *,
    ServiceNamespace: ServiceNamespaceType,  # (1)
    ResourceId: str = ...,
    ScalableDimension: ScalableDimensionType = ...,  # (2)
    MaxResults: int = ...,
    NextToken: str = ...,
    IncludeNotScaledActivities: bool = ...,
) -> DescribeScalingActivitiesResponseTypeDef:  # (3)
    ...
  1. See ServiceNamespaceType
  2. See ScalableDimensionType
  3. See DescribeScalingActivitiesResponseTypeDef
# describe_scaling_activities method usage example with argument unpacking

kwargs: DescribeScalingActivitiesRequestRequestTypeDef = {  # (1)
    "ServiceNamespace": ...,
}

parent.describe_scaling_activities(**kwargs)
  1. See DescribeScalingActivitiesRequestRequestTypeDef

describe_scaling_policies#

Describes the Application Auto Scaling scaling policies for the specified service namespace.

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

# describe_scaling_policies method definition

def describe_scaling_policies(
    self,
    *,
    ServiceNamespace: ServiceNamespaceType,  # (1)
    PolicyNames: Sequence[str] = ...,
    ResourceId: str = ...,
    ScalableDimension: ScalableDimensionType = ...,  # (2)
    MaxResults: int = ...,
    NextToken: str = ...,
) -> DescribeScalingPoliciesResponseTypeDef:  # (3)
    ...
  1. See ServiceNamespaceType
  2. See ScalableDimensionType
  3. See DescribeScalingPoliciesResponseTypeDef
# describe_scaling_policies method usage example with argument unpacking

kwargs: DescribeScalingPoliciesRequestRequestTypeDef = {  # (1)
    "ServiceNamespace": ...,
}

parent.describe_scaling_policies(**kwargs)
  1. See DescribeScalingPoliciesRequestRequestTypeDef

describe_scheduled_actions#

Describes the Application Auto Scaling scheduled actions for the specified service namespace.

Type annotations and code completion for boto3.client("application-autoscaling").describe_scheduled_actions method.