Skip to content

PricingClient

Index > Pricing > PricingClient

Auto-generated documentation for Pricing type annotations stubs module mypy-boto3-pricing.

PricingClient

Type annotations and code completion for boto3.client("pricing"). boto3 documentation

Usage example
from boto3.session import Session
from mypy_boto3_pricing.client import PricingClient

def get_pricing_client() -> PricingClient:
    return Session().client("pricing")

Exceptions

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

Usage example
client = boto3.client("pricing")

try:
    do_something(client)
except (
    client.AccessDeniedException,
    client.ClientError,
    client.ExpiredNextTokenException,
    client.InternalErrorException,
    client.InvalidNextTokenException,
    client.InvalidParameterException,
    client.NotFoundException,
) as e:
    print(e)
Type checking example
from mypy_boto3_pricing.client import Exceptions

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

Methods

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("pricing").can_paginate method. boto3 documentation

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

close

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("pricing").close method. boto3 documentation

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

describe_services

Returns the metadata for one service or a list of the metadata for all services.

Type annotations and code completion for boto3.client("pricing").describe_services method. boto3 documentation

Method definition
def describe_services(
    self,
    *,
    ServiceCode: str = ...,
    FormatVersion: str = ...,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> DescribeServicesResponseTypeDef:  # (1)
    ...
  1. See DescribeServicesResponseTypeDef
Usage example with kwargs
kwargs: DescribeServicesRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
}

parent.describe_services(**kwargs)
  1. See DescribeServicesRequestRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("pricing").generate_presigned_url method. boto3 documentation

Method definition
def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_attribute_values

Returns a list of attribute values.

Type annotations and code completion for boto3.client("pricing").get_attribute_values method. boto3 documentation

Method definition
def get_attribute_values(
    self,
    *,
    ServiceCode: str,
    AttributeName: str,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> GetAttributeValuesResponseTypeDef:  # (1)
    ...
  1. See GetAttributeValuesResponseTypeDef
Usage example with kwargs
kwargs: GetAttributeValuesRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "AttributeName": ...,
}

parent.get_attribute_values(**kwargs)
  1. See GetAttributeValuesRequestRequestTypeDef

get_price_list_file_url

This feature is in preview release and is subject to change.

Type annotations and code completion for boto3.client("pricing").get_price_list_file_url method. boto3 documentation

Method definition
def get_price_list_file_url(
    self,
    *,
    PriceListArn: str,
    FileFormat: str,
) -> GetPriceListFileUrlResponseTypeDef:  # (1)
    ...
  1. See GetPriceListFileUrlResponseTypeDef
Usage example with kwargs
kwargs: GetPriceListFileUrlRequestRequestTypeDef = {  # (1)
    "PriceListArn": ...,
    "FileFormat": ...,
}

parent.get_price_list_file_url(**kwargs)
  1. See GetPriceListFileUrlRequestRequestTypeDef

get_products

Returns a list of all products that match the filter criteria.

Type annotations and code completion for boto3.client("pricing").get_products method. boto3 documentation

Method definition
def get_products(
    self,
    *,
    ServiceCode: str,
    Filters: Sequence[FilterTypeDef] = ...,  # (1)
    FormatVersion: str = ...,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> GetProductsResponseTypeDef:  # (2)
    ...
  1. See FilterTypeDef
  2. See GetProductsResponseTypeDef
Usage example with kwargs
kwargs: GetProductsRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
}

parent.get_products(**kwargs)
  1. See GetProductsRequestRequestTypeDef

list_price_lists

This feature is in preview release and is subject to change.

Type annotations and code completion for boto3.client("pricing").list_price_lists method. boto3 documentation

Method definition
def list_price_lists(
    self,
    *,
    ServiceCode: str,
    EffectiveDate: Union[datetime, str],
    CurrencyCode: str,
    RegionCode: str = ...,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListPriceListsResponseTypeDef:  # (1)
    ...
  1. See ListPriceListsResponseTypeDef
Usage example with kwargs
kwargs: ListPriceListsRequestRequestTypeDef = {  # (1)
    "ServiceCode": ...,
    "EffectiveDate": ...,
    "CurrencyCode": ...,
}

parent.list_price_lists(**kwargs)
  1. See ListPriceListsRequestRequestTypeDef

get_paginator

Type annotations and code completion for boto3.client("pricing").get_paginator method with overloads.