Skip to content

CostOptimizationHub module#

Index > CostOptimizationHub

Auto-generated documentation for CostOptimizationHub type annotations stubs module types-boto3-cost-optimization-hub.

How to install#

You can generate type annotations for boto3 package locally with mypy_boto3_builder. Use uv for build isolation.

  1. Run mypy-boto3-builder in your package root directory: uvx --with 'boto3==1.35.86' mypy_boto3_builder
  2. Select boto3 AWS SDK.
  3. Add CostOptimizationHub service.
  4. Use provided commands to install generated packages.

VSCode extension#

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and CostOptimizationHub.

From PyPI with pip#

Install types-boto3 for CostOptimizationHub service.

# install with boto3 type annotations
python -m pip install 'types-boto3[cost-optimization-hub]'

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

# standalone installation
python -m pip install types-boto3-cost-optimization-hub

How to uninstall#

python -m pip uninstall -y types-boto3-cost-optimization-hub

Usage#

Code samples can be found in Examples.

CostOptimizationHubClient#

Type annotations and code completion for boto3.client("cost-optimization-hub") as CostOptimizationHubClient boto3 documentation

# CostOptimizationHubClient usage example

from boto3.session import Session

from types_boto3_cost_optimization_hub.client import CostOptimizationHubClient

def get_client() -> CostOptimizationHubClient:
    return Session().client("cost-optimization-hub")

Paginators#

Type annotations and code completion for paginators from boto3.client("cost-optimization-hub").get_paginator("...").

# ListEnrollmentStatusesPaginator usage example

from boto3.session import Session

from types_boto3_cost_optimization_hub.paginator import ListEnrollmentStatusesPaginator

def get_list_enrollment_statuses_paginator() -> ListEnrollmentStatusesPaginator:
    return Session().client("cost-optimization-hub").get_paginator("list_enrollment_statuses"))

Literals#

Type annotations for literals used in methods and schema.

# ActionTypeType usage example

from types_boto3_cost_optimization_hub.literals import ActionTypeType

def get_value() -> ActionTypeType:
    return "Delete"

Type definitions#

Type annotations for type definitions used in methods and schema.