Class: Aws::Redshift::Types::EnableLoggingMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Note:

When making an API call, you may pass EnableLoggingMessage data as a hash:

{
  cluster_identifier: "String", # required
  bucket_name: "String", # required
  s3_key_prefix: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

The name of an existing S3 bucket where the log files are to be stored.

Constraints:

  • Must be in the same region as the cluster

  • The cluster must have read bucket and put object permissions

Returns:

  • (String)


4524
4525
4526
4527
4528
4529
# File 'lib/aws-sdk-redshift/types.rb', line 4524

class EnableLoggingMessage < Struct.new(
  :cluster_identifier,
  :bucket_name,
  :s3_key_prefix)
  include Aws::Structure
end

#cluster_identifierString

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

Example: ‘examplecluster`

Returns:

  • (String)


4524
4525
4526
4527
4528
4529
# File 'lib/aws-sdk-redshift/types.rb', line 4524

class EnableLoggingMessage < Struct.new(
  :cluster_identifier,
  :bucket_name,
  :s3_key_prefix)
  include Aws::Structure
end

#s3_key_prefixString

The prefix applied to the log file names.

Constraints:

  • Cannot exceed 512 characters

  • Cannot contain spaces( ), double quotes (“), single quotes (‘), a backslash (\), or control characters. The hexadecimal codes for invalid characters are:

    • x00 to x20

    • x22

    • x27

    • x5c

    • x7f or larger

Returns:

  • (String)


4524
4525
4526
4527
4528
4529
# File 'lib/aws-sdk-redshift/types.rb', line 4524

class EnableLoggingMessage < Struct.new(
  :cluster_identifier,
  :bucket_name,
  :s3_key_prefix)
  include Aws::Structure
end