awswrangler.cloudwatch.wait_query¶
- awswrangler.cloudwatch.wait_query(query_id: str, boto3_session: Session | None = None) Dict[str, Any] ¶
Wait query ends.
https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html
- Parameters:
query_id (str) – Query ID.
boto3_session (boto3.Session(), optional) – Boto3 Session. The default boto3 session will be used if boto3_session receive None.
- Returns:
Query result payload.
- Return type:
Dict[str, Any]
Examples
>>> import awswrangler as wr >>> query_id = wr.cloudwatch.start_query( ... log_group_names=["loggroup"], ... query="fields @timestamp, @message | sort @timestamp desc | limit 5", ... ) ... response = wr.cloudwatch.wait_query(query_id=query_id)