AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DisableLogging operation. Stops logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Redshift.AmazonRedshiftRequest
      Amazon.Redshift.Model.DisableLoggingRequest

Namespace: Amazon.Redshift.Model
Assembly: AWSSDK.Redshift.dll
Version: 3.x.y.z

Syntax

C#
public class DisableLoggingRequest : AmazonRedshiftRequest
         IAmazonWebServiceRequest

The DisableLoggingRequest type exposes the following members

Constructors

NameDescription
Public Method DisableLoggingRequest()

Properties

NameTypeDescription
Public Property ClusterIdentifier System.String

Gets and sets the property ClusterIdentifier.

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

Example: examplecluster

Examples

This example shows how to disable logging.

To disable logging


var client = new AmazonRedshiftClient();
var response = client.DisableLogging(new DisableLoggingRequest 
{
    ClusterIdentifier = "mycluster"
});

string bucketName = response.BucketName;
DateTime lastSuccessfulDeliveryTime = response.LastSuccessfulDeliveryTime;
bool loggingEnabled = response.LoggingEnabled;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5