Skip to content

Describe Logging Status

redshift_describe_logging_status R Documentation

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)

Arguments

ClusterIdentifier

[required] The identifier of the cluster from which to get the logging status.

Example: examplecluster

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",
  LogDestinationType = "s3"|"cloudwatch",
  LogExports = list(
    "string"
  )
)

Request syntax

svc$describe_logging_status(
  ClusterIdentifier = "string"
)