SagemakerEdgeManagerClient#
Index > SagemakerEdgeManager > SagemakerEdgeManagerClient
Auto-generated documentation for SagemakerEdgeManager type annotations stubs module types-boto3-sagemaker-edge.
SagemakerEdgeManagerClient#
Type annotations and code completion for boto3.client("sagemaker-edge").
 boto3 documentation
# SagemakerEdgeManagerClient usage example
from boto3.session import Session
from types_boto3_sagemaker_edge.client import SagemakerEdgeManagerClient
def get_sagemaker-edge_client() -> SagemakerEdgeManagerClient:
    return Session().client("sagemaker-edge")Exceptions#
boto3 client exceptions are generated in runtime.
This class provides code completion for boto3.client("sagemaker-edge").exceptions structure.
# Exceptions.exceptions usage example
client = boto3.client("sagemaker-edge")
try:
    do_something(client)
except (
    client.exceptions.ClientError,
    client.exceptions.InternalServiceException,
) as e:
    print(e)# Exceptions.exceptions type checking example
from types_boto3_sagemaker_edge.client import Exceptions
def handle_error(exc: Exceptions.ClientError) -> None:
    ...Methods#
can_paginate#
Type annotations and code completion for boto3.client("sagemaker-edge").can_paginate method.
 boto3 documentation
# can_paginate method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...generate_presigned_url#
Type annotations and code completion for boto3.client("sagemaker-edge").generate_presigned_url method.
 boto3 documentation
# generate_presigned_url method definition
def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...get_deployments#
Use to get the active deployments from a device.
Type annotations and code completion for boto3.client("sagemaker-edge").get_deployments method.
 boto3 documentation
# get_deployments method definition
def get_deployments(
    self,
    *,
    DeviceName: str,
    DeviceFleetName: str,
) -> GetDeploymentsResultTypeDef:  # (1)
    ...# get_deployments method usage example with argument unpacking
kwargs: GetDeploymentsRequestTypeDef = {  # (1)
    "DeviceName": ...,
    "DeviceFleetName": ...,
}
parent.get_deployments(**kwargs)get_device_registration#
Use to check if a device is registered with SageMaker Edge Manager.
Type annotations and code completion for boto3.client("sagemaker-edge").get_device_registration method.
 boto3 documentation
# get_device_registration method definition
def get_device_registration(
    self,
    *,
    DeviceName: str,
    DeviceFleetName: str,
) -> GetDeviceRegistrationResultTypeDef:  # (1)
    ...# get_device_registration method usage example with argument unpacking
kwargs: GetDeviceRegistrationRequestTypeDef = {  # (1)
    "DeviceName": ...,
    "DeviceFleetName": ...,
}
parent.get_device_registration(**kwargs)send_heartbeat#
Use to get the current status of devices registered on SageMaker Edge Manager.
Type annotations and code completion for boto3.client("sagemaker-edge").send_heartbeat method.
 boto3 documentation
# send_heartbeat method definition
def send_heartbeat(
    self,
    *,
    AgentVersion: str,
    DeviceName: str,
    DeviceFleetName: str,
    AgentMetrics: Sequence[EdgeMetricTypeDef] = ...,  # (1)
    Models: Sequence[ModelTypeDef] = ...,  # (2)
    DeploymentResult: DeploymentResultTypeDef = ...,  # (3)
) -> EmptyResponseMetadataTypeDef:  # (4)
    ...- See Sequence[EdgeMetricTypeDef]
- See Sequence[ModelTypeDef]
- See DeploymentResultTypeDef
- See EmptyResponseMetadataTypeDef
# send_heartbeat method usage example with argument unpacking
kwargs: SendHeartbeatRequestTypeDef = {  # (1)
    "AgentVersion": ...,
    "DeviceName": ...,
    "DeviceFleetName": ...,
}
parent.send_heartbeat(**kwargs)