AWSKinesisVideoUpdateNotificationConfigurationInput
Objective-C
@interface AWSKinesisVideoUpdateNotificationConfigurationInput
Swift
class AWSKinesisVideoUpdateNotificationConfigurationInput
-
The structure containing the information required for notifications. If the structure is null, the configuration will be deleted from the stream.
Declaration
Objective-C
@property (nonatomic, strong) AWSKinesisVideoNotificationConfiguration *_Nullable notificationConfiguration;
Swift
var notificationConfiguration: AWSKinesisVideoNotificationConfiguration? { get set }
-
The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the notification configuration. You must specify either the
StreamName
or theStreamARN
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable streamARN;
Swift
var streamARN: String? { get set }
-
The name of the stream from which to update the notification configuration. You must specify either the
StreamName
or theStreamARN
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable streamName;
Swift
var streamName: String? { get set }