Class: Aws::Redshift::Types::DisableLoggingMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::DisableLoggingMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_identifier ⇒ String
The identifier of the cluster on which logging is to be stopped.
-
#log_destination_type ⇒ String
The log destination type.
-
#log_exports ⇒ Array<String>
The collection of log types to stop exporting.
Instance Attribute Details
#cluster_identifier ⇒ String
The identifier of the cluster on which logging is to be stopped.
Example: examplecluster
6273 6274 6275 6276 6277 6278 6279 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 6273 class DisableLoggingMessage < Struct.new( :cluster_identifier, :log_destination_type, :log_exports) SENSITIVE = [] include Aws::Structure end |
#log_destination_type ⇒ String
The log destination type. An enum with possible values of s3,
cloudwatch, and s3table. When set to s3table, stops system
table publishing. When omitted, the operation disables audit
logging.
6273 6274 6275 6276 6277 6278 6279 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 6273 class DisableLoggingMessage < Struct.new( :cluster_identifier, :log_destination_type, :log_exports) SENSITIVE = [] include Aws::Structure end |
#log_exports ⇒ Array<String>
The collection of log types to stop exporting. When
LogDestinationType is s3table, the values are the names of the
system tables to stop publishing. Omitting this parameter or passing
all stops publishing all system tables.
6273 6274 6275 6276 6277 6278 6279 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 6273 class DisableLoggingMessage < Struct.new( :cluster_identifier, :log_destination_type, :log_exports) SENSITIVE = [] include Aws::Structure end |