RedshiftDestinationUpdate
public struct RedshiftDestinationUpdate : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon CloudWatch logging options for your delivery stream.
Declaration
Swift
public let cloudWatchLoggingOptions: CloudWatchLoggingOptions?
-
The database connection string.
Declaration
Swift
public let clusterJDBCURL: String?
-
The COPY command.
Declaration
Swift
public let copyCommand: CopyCommand?
-
The user password.
Declaration
Swift
public let password: String?
-
The data processing configuration.
Declaration
Swift
public let processingConfiguration: ProcessingConfiguration?
-
The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).
Declaration
Swift
public let retryOptions: RedshiftRetryOptions?
-
The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
Declaration
Swift
public let roleARN: String?
-
You can update a delivery stream to enable Amazon S3 backup if it is disabled. If backup is enabled, you can’t update the delivery stream to disable it.
Declaration
Swift
public let s3BackupMode: RedshiftS3BackupMode?
-
The Amazon S3 destination for backup.
Declaration
Swift
public let s3BackupUpdate: S3DestinationUpdate?
-
The Amazon S3 destination. The compression formats SNAPPY or ZIP cannot be specified in RedshiftDestinationUpdate.S3Update because the Amazon Redshift COPY operation that reads from the S3 bucket doesn’t support these compression formats.
Declaration
Swift
public let s3Update: S3DestinationUpdate?
-
The name of the user.
Declaration
Swift
public let username: String?
-
init(cloudWatchLoggingOptions:clusterJDBCURL:copyCommand:password:processingConfiguration:retryOptions:roleARN:s3BackupMode:s3BackupUpdate:s3Update:username:)
Undocumented
Declaration
Swift
public init(cloudWatchLoggingOptions: CloudWatchLoggingOptions? = nil, clusterJDBCURL: String? = nil, copyCommand: CopyCommand? = nil, password: String? = nil, processingConfiguration: ProcessingConfiguration? = nil, retryOptions: RedshiftRetryOptions? = nil, roleARN: String? = nil, s3BackupMode: RedshiftS3BackupMode? = nil, s3BackupUpdate: S3DestinationUpdate? = nil, s3Update: S3DestinationUpdate? = nil, username: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws