Learn R Programming

paws.database (version 0.1.12)

redshift_disable_logging: Stops logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster

Description

Stops logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.

Usage

redshift_disable_logging(ClusterIdentifier)

Value

A list with the following syntax:

list(
  LoggingEnabled = TRUE|FALSE,
  BucketName = "string",
  S3KeyPrefix = "string",
  LastSuccessfulDeliveryTime = as.POSIXct(
    "2015-01-01"
  ),
  LastFailureTime = as.POSIXct(
    "2015-01-01"
  ),
  LastFailureMessage = "string"
)

Arguments

ClusterIdentifier

[required] The identifier of the cluster on which logging is to be stopped.

Example: examplecluster

Request syntax

svc$disable_logging(
  ClusterIdentifier = "string"
)