AWSFirehoseDeliveryStreamDescription
Objective-C
@interface AWSFirehoseDeliveryStreamDescription
Swift
class AWSFirehoseDeliveryStreamDescription
Contains information about a delivery stream.
Required parameters: [DeliveryStreamName, DeliveryStreamARN, DeliveryStreamStatus, DeliveryStreamType, VersionId, Destinations, HasMoreDestinations]
-
The date and time that the delivery stream was created.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable createTimestamp;
Swift
var createTimestamp: Date? { get set }
-
The Amazon Resource Name (ARN) of the delivery stream. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable deliveryStreamARN;
Swift
var deliveryStreamARN: String? { get set }
-
Indicates the server-side encryption (SSE) status for the delivery stream.
Declaration
Objective-C
@property (nonatomic, strong) AWSFirehoseDeliveryStreamEncryptionConfiguration *_Nullable deliveryStreamEncryptionConfiguration;
Swift
var deliveryStreamEncryptionConfiguration: AWSFirehoseDeliveryStreamEncryptionConfiguration? { get set }
-
The name of the delivery stream.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable deliveryStreamName;
Swift
var deliveryStreamName: String? { get set }
-
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 invokeCreateDeliveryStream
again on it. However, you can invoke the DeleteDeliveryStream operation to delete it.Declaration
Objective-C
@property (nonatomic) AWSFirehoseDeliveryStreamStatus deliveryStreamStatus;
Swift
var deliveryStreamStatus: AWSFirehoseDeliveryStreamStatus { get set }
-
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
Objective-C
@property (nonatomic) AWSFirehoseDeliveryStreamType deliveryStreamType;
Swift
var deliveryStreamType: AWSFirehoseDeliveryStreamType { get set }
-
The destinations.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSFirehoseDestinationDescription *> *_Nullable destinations;
Swift
var destinations: [AWSFirehoseDestinationDescription]? { get set }
-
Provides details in case one of the following operations fails due to an error related to KMS: CreateDeliveryStream, DeleteDeliveryStream, StartDeliveryStreamEncryption, StopDeliveryStreamEncryption.
Declaration
Objective-C
@property (nonatomic, strong) AWSFirehoseFailureDescription *_Nullable failureDescription;
Swift
var failureDescription: AWSFirehoseFailureDescription? { get set }
-
Indicates whether there are more destinations available to list.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable hasMoreDestinations;
Swift
var hasMoreDestinations: NSNumber? { get set }
-
The date and time that the delivery stream was last updated.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable lastUpdateTimestamp;
Swift
var lastUpdateTimestamp: Date? { get set }
-
If the
DeliveryStreamType
parameter isKinesisStreamAsSource
, a SourceDescription object describing the source Kinesis data stream.Declaration
Objective-C
@property (nonatomic, strong) AWSFirehoseSourceDescription *_Nullable source;
Swift
var source: AWSFirehoseSourceDescription? { get set }
-
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
Objective-C
@property (nonatomic, strong) NSString *_Nullable versionId;
Swift
var versionId: String? { get set }