AWSKinesisCreateStreamInput

Objective-C

@interface AWSKinesisCreateStreamInput

Swift

class AWSKinesisCreateStreamInput

Represents the input for CreateStream.

Required parameters: [StreamName, ShardCount]

  • The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.

    DefaultShardLimit;

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable shardCount;

    Swift

    var shardCount: NSNumber? { get set }
  • A name to identify the stream. The stream name is scoped to the AWS account used by the application that creates the stream. It is also scoped by AWS Region. That is, two streams in two different AWS accounts can have the same name. Two streams in the same AWS account but in two different Regions can also have the same name.

    Declaration

    Objective-C

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

    Swift

    var streamName: String? { get set }