DeliveryStreamDescription
public struct DeliveryStreamDescription : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The date and time that the delivery stream was created.
Declaration
Swift
public let createTimestamp: TimeStamp?
-
The Amazon Resource Name (ARN) of the delivery stream. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
Declaration
Swift
public let deliveryStreamARN: String
-
Indicates the server-side encryption (SSE) status for the delivery stream.
Declaration
Swift
public let deliveryStreamEncryptionConfiguration: DeliveryStreamEncryptionConfiguration?
-
The name of the delivery stream.
Declaration
Swift
public let deliveryStreamName: String
-
The status of the delivery stream. If the status of a delivery stream is CREATING_FAILED, this status doesn’t change, and you can’t invoke CreateDeliveryStream again on it. However, you can invoke the DeleteDeliveryStream operation to delete it.
Declaration
Swift
public let deliveryStreamStatus: DeliveryStreamStatus
-
The delivery stream type. This can be one of the following values: DirectPut: Provider applications access the delivery stream directly. KinesisStreamAsSource: The delivery stream uses a Kinesis data stream as a source.
Declaration
Swift
public let deliveryStreamType: DeliveryStreamType
-
The destinations.
Declaration
Swift
public let destinations: [DestinationDescription]
-
Provides details in case one of the following operations fails due to an error related to KMS: CreateDeliveryStream, DeleteDeliveryStream, StartDeliveryStreamEncryption, StopDeliveryStreamEncryption.
Declaration
Swift
public let failureDescription: FailureDescription?
-
Indicates whether there are more destinations available to list.
Declaration
Swift
public let hasMoreDestinations: Bool
-
The date and time that the delivery stream was last updated.
Declaration
Swift
public let lastUpdateTimestamp: TimeStamp?
-
If the DeliveryStreamType parameter is KinesisStreamAsSource, a SourceDescription object describing the source Kinesis data stream.
Declaration
Swift
public let source: SourceDescription?
-
Each time the destination is updated for a delivery stream, the version ID is changed, and the current version ID is required when updating the destination. This is so that the service knows it is applying the changes to the correct version of the delivery stream.
Declaration
Swift
public let versionId: String
-
init(createTimestamp:deliveryStreamARN:deliveryStreamEncryptionConfiguration:deliveryStreamName:deliveryStreamStatus:deliveryStreamType:destinations:failureDescription:hasMoreDestinations:lastUpdateTimestamp:source:versionId:)
Undocumented
Declaration
Swift
public init(createTimestamp: TimeStamp? = nil, deliveryStreamARN: String, deliveryStreamEncryptionConfiguration: DeliveryStreamEncryptionConfiguration? = nil, deliveryStreamName: String, deliveryStreamStatus: DeliveryStreamStatus, deliveryStreamType: DeliveryStreamType, destinations: [DestinationDescription], failureDescription: FailureDescription? = nil, hasMoreDestinations: Bool, lastUpdateTimestamp: TimeStamp? = nil, source: SourceDescription? = nil, versionId: String)