AWSKinesisVideoTagStreamInput

Objective-C

@interface AWSKinesisVideoTagStreamInput

Swift

class AWSKinesisVideoTagStreamInput
  • The Amazon Resource Name (ARN) of the resource that you want to add the tag or tags to.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable streamARN;

    Swift

    var streamARN: String? { get set }
  • The name of the stream that you want to add the tag or tags to.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable streamName;

    Swift

    var streamName: String? { get set }
  • A list of tags to associate with the specified stream. Each tag is a key-value pair (the value is optional).

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;

    Swift

    var tags: [String : String]? { get set }