Skip to content

CloudWatchRUMClient

Index > CloudWatchRUM > CloudWatchRUMClient

Auto-generated documentation for CloudWatchRUM type annotations stubs module mypy-boto3-rum.

CloudWatchRUMClient

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

Usage example
from boto3.session import Session
from mypy_boto3_rum.client import CloudWatchRUMClient

def get_rum_client() -> CloudWatchRUMClient:
    return Session().client("rum")

Exceptions

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

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

try:
    do_something(client)
except (
    client.AccessDeniedException,
    client.ClientError,
    client.ConflictException,
    client.InternalServerException,
    client.ResourceNotFoundException,
    client.ServiceQuotaExceededException,
    client.ThrottlingException,
    client.ValidationException,
) as e:
    print(e)
Type checking example
from mypy_boto3_rum.client import Exceptions

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

Methods

batch_create_rum_metric_definitions

Specifies the extended metrics and custom metrics that you want a CloudWatch RUM app monitor to send to a destination.

Type annotations and code completion for boto3.client("rum").batch_create_rum_metric_definitions method. boto3 documentation

Method definition
def batch_create_rum_metric_definitions(
    self,
    *,
    AppMonitorName: str,
    Destination: MetricDestinationType,  # (1)
    MetricDefinitions: Sequence[MetricDefinitionRequestTypeDef],  # (2)
    DestinationArn: str = ...,
) -> BatchCreateRumMetricDefinitionsResponseTypeDef:  # (3)
    ...
  1. See MetricDestinationType
  2. See MetricDefinitionRequestTypeDef
  3. See BatchCreateRumMetricDefinitionsResponseTypeDef
Usage example with kwargs
kwargs: BatchCreateRumMetricDefinitionsRequestRequestTypeDef = {  # (1)
    "AppMonitorName": ...,
    "Destination": ...,
    "MetricDefinitions": ...,
}

parent.batch_create_rum_metric_definitions(**kwargs)
  1. See BatchCreateRumMetricDefinitionsRequestRequestTypeDef

batch_delete_rum_metric_definitions

Removes the specified metrics from being sent to an extended metrics destination.

Type annotations and code completion for boto3.client("rum").batch_delete_rum_metric_definitions method. boto3 documentation

Method definition
def batch_delete_rum_metric_definitions(
    self,
    *,
    AppMonitorName: str,
    Destination: MetricDestinationType,  # (1)
    MetricDefinitionIds: Sequence[str],
    DestinationArn: str = ...,
) -> BatchDeleteRumMetricDefinitionsResponseTypeDef:  # (2)
    ...
  1. See MetricDestinationType
  2. See BatchDeleteRumMetricDefinitionsResponseTypeDef
Usage example with kwargs
kwargs: BatchDeleteRumMetricDefinitionsRequestRequestTypeDef = {  # (1)
    "AppMonitorName": ...,
    "Destination": ...,
    "MetricDefinitionIds": ...,
}

parent.batch_delete_rum_metric_definitions(**kwargs)
  1. See BatchDeleteRumMetricDefinitionsRequestRequestTypeDef

batch_get_rum_metric_definitions

Retrieves the list of metrics and dimensions that a RUM app monitor is sending to a single destination.

Type annotations and code completion for boto3.client("rum").batch_get_rum_metric_definitions method. boto3 documentation

Method definition
def batch_get_rum_metric_definitions(
    self,
    *,
    AppMonitorName: str,
    Destination: MetricDestinationType,  # (1)
    DestinationArn: str = ...,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> BatchGetRumMetricDefinitionsResponseTypeDef:  # (2)
    ...
  1. See MetricDestinationType
  2. See BatchGetRumMetricDefinitionsResponseTypeDef
Usage example with kwargs
kwargs: BatchGetRumMetricDefinitionsRequestRequestTypeDef = {  # (1)
    "AppMonitorName": ...,
    "Destination": ...,
}

parent.batch_get_rum_metric_definitions(**kwargs)
  1. See BatchGetRumMetricDefinitionsRequestRequestTypeDef

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("rum").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("rum").close method. boto3 documentation

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

create_app_monitor

Creates a Amazon CloudWatch RUM app monitor, which collects telemetry data from your application and sends that data to RUM.

Type annotations and code completion for boto3.client("rum").create_app_monitor method. boto3 documentation

Method definition
def create_app_monitor(
    self,
    *,
    Domain: str,
    Name: str,
    AppMonitorConfiguration: AppMonitorConfigurationTypeDef = ...,  # (1)
    CustomEvents: CustomEventsTypeDef = ...,  # (2)
    CwLogEnabled: bool = ...,
    Tags: Mapping[str, str] = ...,
) -> CreateAppMonitorResponseTypeDef:  # (3)
    ...
  1. See AppMonitorConfigurationTypeDef
  2. See CustomEventsTypeDef
  3. See CreateAppMonitorResponseTypeDef
Usage example with kwargs
kwargs: CreateAppMonitorRequestRequestTypeDef = {  # (1)
    "Domain": ...,
    "Name": ...,
}

parent.create_app_monitor(**kwargs)
  1. See CreateAppMonitorRequestRequestTypeDef

delete_app_monitor

Deletes an existing app monitor.

Type annotations and code completion for boto3.client("rum").delete_app_monitor method. boto3 documentation

Method definition
def delete_app_monitor(
    self,
    *,
    Name: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteAppMonitorRequestRequestTypeDef = {  # (1)
    "Name": ...,
}

parent.delete_app_monitor(**kwargs)
  1. See DeleteAppMonitorRequestRequestTypeDef

delete_rum_metrics_destination

Deletes a destination for CloudWatch RUM extended metrics, so that the specified app monitor stops sending extended metrics to that destination.

Type annotations and code completion for boto3.client("rum").delete_rum_metrics_destination method. boto3 documentation

Method definition
def delete_rum_metrics_destination(
    self,
    *,
    AppMonitorName: str,
    Destination: MetricDestinationType,  # (1)
    DestinationArn: str = ...,
) -> Dict[str, Any]:
    ...
  1. See MetricDestinationType
Usage example with kwargs
kwargs: DeleteRumMetricsDestinationRequestRequestTypeDef = {  # (1)
    "AppMonitorName": ...,
    "Destination": ...,
}

parent.delete_rum_metrics_destination(**kwargs)
  1. See DeleteRumMetricsDestinationRequestRequestTypeDef

generate_presigned_url

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

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

Retrieves the complete configuration information for one app monitor.

Type annotations and code completion for boto3.client("rum").get_app_monitor method. boto3 documentation

Method definition
def get_app_monitor(
    self,
    *,
    Name: str,
) -> GetAppMonitorResponseTypeDef:  # (1)
    ...
  1. See GetAppMonitorResponseTypeDef
Usage example with kwargs
kwargs: GetAppMonitorRequestRequestTypeDef = {  # (1)
    "Name": ...,
}

parent.get_app_monitor(**kwargs)
  1. See GetAppMonitorRequestRequestTypeDef

get_app_monitor_data

Retrieves the raw performance events that RUM has collected from your web application, so that you can do your own processing or analysis of this data.

Type annotations and code completion for boto3.client("rum").get_app_monitor_data method. boto3 documentation

Method definition
def get_app_monitor_data(
    self,
    *,
    Name: str,
    TimeRange: TimeRangeTypeDef,  # (1)
    Filters: Sequence[QueryFilterTypeDef] = ...,  # (2)
    MaxResults: int = ...,
    NextToken: str = ...,
) -> GetAppMonitorDataResponseTypeDef:  # (3)
    ...
  1. See TimeRangeTypeDef
  2. See QueryFilterTypeDef
  3. See GetAppMonitorDataResponseTypeDef
Usage example with kwargs
kwargs: GetAppMonitorDataRequestRequestTypeDef = {  # (1)
    "Name": ...,
    "TimeRange": ...,
}

parent.get_app_monitor_data(**kwargs)
  1. See GetAppMonitorDataRequestRequestTypeDef

list_app_monitors

Returns a list of the Amazon CloudWatch RUM app monitors in the account.

Type annotations and code completion for boto3.client("rum").list_app_monitors method. boto3 documentation

Method definition
def list_app_monitors(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListAppMonitorsResponseTypeDef:  # (1)
    ...
  1. See ListAppMonitorsResponseTypeDef
Usage example with kwargs
kwargs: ListAppMonitorsRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_app_monitors(**kwargs)
  1. See ListAppMonitorsRequestRequestTypeDef

list_rum_metrics_destinations

Returns a list of destinations that you have created to receive RUM extended metrics, for the specified app monitor.

Type annotations and code completion for boto3.client("rum").list_rum_metrics_destinations method. boto3 documentation

Method definition
def list_rum_metrics_destinations(
    self,
    *,
    AppMonitorName: str,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListRumMetricsDestinationsResponseTypeDef:  # (1)
    ...
  1. See ListRumMetricsDestinationsResponseTypeDef
Usage example with kwargs
kwargs: ListRumMetricsDestinationsRequestRequestTypeDef = {  # (1)
    "AppMonitorName": ...,
}

parent.list_rum_metrics_destinations(**kwargs)
  1. See ListRumMetricsDestinationsRequestRequestTypeDef

list_tags_for_resource

Displays the tags associated with a CloudWatch RUM resource.

Type annotations and code completion for boto3.client("rum").list_tags_for_resource method. boto3 documentation

Method definition
def list_tags_for_resource(
    self,
    *,
    ResourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
Usage example with kwargs
kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

put_rum_events

Sends telemetry events about your application performance and user behavior to CloudWatch RUM.

Type annotations and code completion for boto3.client("rum").put_rum_events method. boto3 documentation

Method definition
def put_rum_events(
    self,
    *,
    AppMonitorDetails: AppMonitorDetailsTypeDef,  # (1)
    BatchId: str,
    Id: str,
    RumEvents: Sequence[RumEventTypeDef],  # (2)
    UserDetails: UserDetailsTypeDef,  # (3)
) -> Dict[str, Any]:
    ...
  1. See AppMonitorDetailsTypeDef
  2. See RumEventTypeDef
  3. See UserDetailsTypeDef
Usage example with kwargs
kwargs: PutRumEventsRequestRequestTypeDef = {  # (1)
    "AppMonitorDetails": ...,
    "BatchId": ...,
    "Id": ...,
    "RumEvents": ...,
    "UserDetails": ...,
}

parent.put_rum_events(**kwargs)
  1. See PutRumEventsRequestRequestTypeDef

put_rum_metrics_destination

Creates or updates a destination to receive extended metrics from CloudWatch RUM.

Type annotations and code completion for boto3.client("rum").put_rum_metrics_destination method. boto3 documentation

Method definition
def put_rum_metrics_destination(
    self,
    *,
    AppMonitorName: str,
    Destination: MetricDestinationType,  # (1)
    DestinationArn: str = ...,
    IamRoleArn: str = ...,
) -> Dict[str, Any]:
    ...
  1. See MetricDestinationType
Usage example with kwargs
kwargs: PutRumMetricsDestinationRequestRequestTypeDef = {  # (1)
    "AppMonitorName": ...,
    "Destination": ...,
}

parent.put_rum_metrics_destination(**kwargs)
  1. See PutRumMetricsDestinationRequestRequestTypeDef

tag_resource

Assigns one or more tags (key-value pairs) to the specified CloudWatch RUM resource.

Type annotations and code completion for boto3.client("rum").tag_resource method. boto3 documentation

Method definition
def tag_resource(
    self,
    *,
    ResourceArn: str,
    Tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "ResourceArn": ...,
    "Tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

untag_resource

Removes one or more tags from the specified resource.

Type annotations and code completion for boto3.client("rum").untag_resource method. boto3 documentation

Method definition
def untag_resource(
    self,
    *,
    ResourceArn: str,
    TagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "ResourceArn": ...,
    "TagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

update_app_monitor

Updates the configuration of an existing app monitor.

Type annotations and code completion for boto3.client("rum").update_app_monitor method. boto3 documentation

Method definition
def update_app_monitor(
    self,
    *,
    Name: str,
    AppMonitorConfiguration: AppMonitorConfigurationTypeDef = ...,  # (1)
    CustomEvents: CustomEventsTypeDef = ...,  # (2)
    CwLogEnabled: bool = ...,
    Domain: str = ...,
) -> Dict[str, Any]:
    ...
  1. See AppMonitorConfigurationTypeDef
  2. See CustomEventsTypeDef
Usage example with kwargs
kwargs: UpdateAppMonitorRequestRequestTypeDef = {  # (1)
    "Name": ...,
}

parent.update_app_monitor(**kwargs)
  1. See UpdateAppMonitorRequestRequestTypeDef

update_rum_metric_definition

Modifies one existing metric definition for CloudWatch RUM extended metrics.

Type annotations and code completion for boto3.client("rum").update_rum_metric_definition method. boto3 documentation

Method definition
def update_rum_metric_definition(
    self,
    *,
    AppMonitorName: str,
    Destination: MetricDestinationType,  # (1)
    MetricDefinition: MetricDefinitionRequestTypeDef,  # (2)
    MetricDefinitionId: str,
    DestinationArn: str = ...,
) -> Dict[str, Any]:
    ...
  1. See MetricDestinationType
  2. See MetricDefinitionRequestTypeDef
Usage example with kwargs
kwargs: UpdateRumMetricDefinitionRequestRequestTypeDef = {  # (1)
    "AppMonitorName": ...,
    "Destination": ...,
    "MetricDefinition": ...,
    "MetricDefinitionId": ...,
}

parent.update_rum_metric_definition(**kwargs)
  1. See UpdateRumMetricDefinitionRequestRequestTypeDef

get_paginator

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