AWSIoTKinesisAction

Objective-C

@interface AWSIoTKinesisAction

Swift

class AWSIoTKinesisAction

Describes an action to write data to an Amazon Kinesis stream.

Required parameters: [roleArn, streamName]

  • The partition key.

    Declaration

    Objective-C

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

    Swift

    var partitionKey: String? { get set }
  • The ARN of the IAM role that grants access to the Amazon Kinesis stream.

    Declaration

    Objective-C

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

    Swift

    var roleArn: String? { get set }
  • The name of the Amazon Kinesis stream.

    Declaration

    Objective-C

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

    Swift

    var streamName: String? { get set }