Skip to content

DevOpsGuru module

Index > DevOpsGuru

Auto-generated documentation for DevOpsGuru type annotations stubs module types-aiobotocore-devops-guru.

How to install

From PyPI with pip

Install types-aioboto3 for DevOpsGuru service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[devops-guru]'


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


# standalone installation
python -m pip install types-aiobotocore-devops-guru

How to uninstall

python -m pip uninstall -y types-aiobotocore-devops-guru

Usage

Code samples can be found in Examples.

DevOpsGuruClient

Type annotations and code completion for session.client("devops-guru") as DevOpsGuruClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_devops_guru.client import DevOpsGuruClient


session = Session()
async with session.client("devops-guru") as client:
    client: DevOpsGuruClient

Paginators

Type annotations and code completion for paginators from session.client("devops-guru").get_paginator("...").

Usage example
from types_aiobotocore_devops_guru.paginator import DescribeOrganizationResourceCollectionHealthPaginator

def get_describe_organization_resource_collection_health_paginator() -> DescribeOrganizationResourceCollectionHealthPaginator:
    return client.get_paginator("describe_organization_resource_collection_health"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_devops_guru.literals import AnomalySeverityType

def get_value() -> AnomalySeverityType:
    return "HIGH"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_devops_guru.type_defs import AccountInsightHealthTypeDef

def get_value() -> AccountInsightHealthTypeDef:
    return {
        "OpenProactiveInsights": ...,
    }