Skip to content

MarketplaceEntitlementServiceClient

Index > MarketplaceEntitlementService > MarketplaceEntitlementServiceClient

Auto-generated documentation for MarketplaceEntitlementService type annotations stubs module mypy-boto3-marketplace-entitlement.

MarketplaceEntitlementServiceClient

Type annotations and code completion for boto3.client("marketplace-entitlement"). boto3 documentation

Usage example
from boto3.session import Session
from mypy_boto3_marketplace_entitlement.client import MarketplaceEntitlementServiceClient

def get_marketplace-entitlement_client() -> MarketplaceEntitlementServiceClient:
    return Session().client("marketplace-entitlement")

Exceptions

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

Usage example
client = boto3.client("marketplace-entitlement")

try:
    do_something(client)
except (
    client.ClientError,
    client.InternalServiceErrorException,
    client.InvalidParameterException,
    client.ThrottlingException,
) as e:
    print(e)
Type checking example
from mypy_boto3_marketplace_entitlement.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("marketplace-entitlement").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("marketplace-entitlement").close method. boto3 documentation

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

generate_presigned_url

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

Type annotations and code completion for boto3.client("marketplace-entitlement").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_entitlements

GetEntitlements retrieves entitlement values for a given product.

Type annotations and code completion for boto3.client("marketplace-entitlement").get_entitlements method. boto3 documentation

Method definition
def get_entitlements(
    self,
    *,
    ProductCode: str,
    Filter: Mapping[GetEntitlementFilterNameType, Sequence[str]] = ...,  # (1)
    NextToken: str = ...,
    MaxResults: int = ...,
) -> GetEntitlementsResultTypeDef:  # (2)
    ...
  1. See GetEntitlementFilterNameType
  2. See GetEntitlementsResultTypeDef
Usage example with kwargs
kwargs: GetEntitlementsRequestRequestTypeDef = {  # (1)
    "ProductCode": ...,
}

parent.get_entitlements(**kwargs)
  1. See GetEntitlementsRequestRequestTypeDef

get_paginator

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