Learn R Programming

paws.database (version 0.1.12)

redshift_describe_logging_status: Describes whether information, such as queries and connection attempts, is being logged for the specified Amazon Redshift cluster

Description

Describes whether information, such as queries and connection attempts, is being logged for the specified Amazon Redshift cluster.

Usage

redshift_describe_logging_status(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 from which to get the logging status.

Example: examplecluster

Request syntax

svc$describe_logging_status(
  ClusterIdentifier = "string"
)