S3DestinationUpdate
public struct S3DestinationUpdate : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ARN of the S3 bucket. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
Declaration
Swift
public let bucketARN: String?
-
The buffering option. If no value is specified, BufferingHints object default values are used.
Declaration
Swift
public let bufferingHints: BufferingHints?
-
The CloudWatch logging options for your delivery stream.
Declaration
Swift
public let cloudWatchLoggingOptions: CloudWatchLoggingOptions?
-
The compression format. If no value is specified, the default is UNCOMPRESSED. The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.
Declaration
Swift
public let compressionFormat: CompressionFormat?
-
The encryption configuration. If no value is specified, the default is no encryption.
Declaration
Swift
public let encryptionConfiguration: EncryptionConfiguration?
-
A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name. For information about how to specify this prefix, see Custom Prefixes for Amazon S3 Objects.
Declaration
Swift
public let errorOutputPrefix: String?
-
The “YYYY/MM/DD/HH” time format prefix is automatically used for delivered Amazon S3 files. You can also specify a custom prefix, as described in Custom Prefixes for Amazon S3 Objects.
Declaration
Swift
public let prefix: String?
-
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?
-
init(bucketARN:bufferingHints:cloudWatchLoggingOptions:compressionFormat:encryptionConfiguration:errorOutputPrefix:prefix:roleARN:)
Undocumented
Declaration
Swift
public init(bucketARN: String? = nil, bufferingHints: BufferingHints? = nil, cloudWatchLoggingOptions: CloudWatchLoggingOptions? = nil, compressionFormat: CompressionFormat? = nil, encryptionConfiguration: EncryptionConfiguration? = nil, errorOutputPrefix: String? = nil, prefix: String? = nil, roleARN: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws