Learn R Programming

paws.database (version 0.1.12)

rds_stop_activity_stream: Stops a database activity stream that was started using the AWS console, the start-activity-stream AWS CLI command, or the StartActivityStream action

Description

Stops a database activity stream that was started using the AWS console, the start-activity-stream AWS CLI command, or the start_activity_stream action.

For more information, see Database Activity Streams in the Amazon Aurora User Guide.

Usage

rds_stop_activity_stream(ResourceArn, ApplyImmediately)

Value

A list with the following syntax:

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

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.

Request syntax

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