EnableLoggingMessage

public struct EnableLoggingMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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

    Declaration

    Swift

    public let bucketName: String
  • The identifier of the cluster on which logging is to be started. Example: examplecluster

    Declaration

    Swift

    public let clusterIdentifier: String
  • 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

    Declaration

    Swift

    public let s3KeyPrefix: String?
  • Undocumented

    Declaration

    Swift

    public init(bucketName: String, clusterIdentifier: String, s3KeyPrefix: String? = nil)