Skip to content

Stop Activity Stream

rds_stop_activity_stream R Documentation

Stops a database activity stream that was started using the Amazon Web Services console, the start-activity-stream CLI command, or the StartActivityStream operation

Description

Stops a database activity stream that was started using the Amazon Web Services console, the start-activity-stream CLI command, or the start_activity_stream operation.

For more information, see Monitoring Amazon Aurora with Database Activity Streams in the Amazon Aurora User Guide or Monitoring Amazon RDS with Database Activity Streams in the Amazon RDS User Guide.

Usage

rds_stop_activity_stream(ResourceArn, ApplyImmediately)

Arguments

ResourceArn

[required] The Amazon Resource Name (ARN) of the DB cluster for the database activity stream. For example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.

ApplyImmediately

Specifies whether or not the database activity stream is to stop as soon as possible, regardless of the maintenance window for the database.

Value

A list with the following syntax:

list(
  KmsKeyId = "string",
  KinesisStreamName = "string",
  Status = "stopped"|"starting"|"started"|"stopping"
)

Request syntax

svc$stop_activity_stream(
  ResourceArn = "string",
  ApplyImmediately = TRUE|FALSE
)