amazonka-kinesis-2.0: Amazon Kinesis SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Kinesis.DescribeStream

Description

Describes the specified Kinesis data stream.

This API has been revised. It's highly recommended that you use the DescribeStreamSummary API to get a summarized description of the specified Kinesis data stream and the ListShards API to list the shards in a specified data stream and obtain information about each shard.

When invoking this API, it is recommended you use the StreamARN input parameter rather than the StreamName input parameter.

The information returned includes the stream name, Amazon Resource Name (ARN), creation time, enhanced metric configuration, and shard map. The shard map is an array of shard objects. For each shard object, there is the hash key and sequence number ranges that the shard spans, and the IDs of any earlier shards that played in a role in creating the shard. Every record ingested in the stream is identified by a sequence number, which is assigned when the record is put into the stream.

You can limit the number of shards returned by each call. For more information, see Retrieving Shards from a Stream in the Amazon Kinesis Data Streams Developer Guide.

There are no guarantees about the chronological order shards returned. To process shards in chronological order, use the ID of the parent shard to track the lineage to the oldest shard.

This operation has a limit of 10 transactions per second per account.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeStream Source #

Represents the input for DescribeStream.

See: newDescribeStream smart constructor.

Constructors

DescribeStream' 

Fields

  • exclusiveStartShardId :: Maybe Text

    The shard ID of the shard to start with.

    Specify this parameter to indicate that you want to describe the stream starting with the shard whose ID immediately follows ExclusiveStartShardId.

    If you don't specify this parameter, the default behavior for DescribeStream is to describe the stream starting with the first shard in the stream.

  • limit :: Maybe Natural

    The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.

  • streamARN :: Maybe Text

    The ARN of the stream.

  • streamName :: Maybe Text

    The name of the stream to describe.

Instances

Instances details
ToJSON DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

ToHeaders DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

ToPath DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

ToQuery DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

AWSPager DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

AWSRequest DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Associated Types

type AWSResponse DescribeStream #

Generic DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Associated Types

type Rep DescribeStream :: Type -> Type #

Read DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Show DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

NFData DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Methods

rnf :: DescribeStream -> () #

Eq DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Hashable DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

type AWSResponse DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

type Rep DescribeStream Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

type Rep DescribeStream = D1 ('MetaData "DescribeStream" "Amazonka.Kinesis.DescribeStream" "amazonka-kinesis-2.0-AW1spVPMUGf3LUqQQ22bci" 'False) (C1 ('MetaCons "DescribeStream'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "exclusiveStartShardId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "limit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "streamARN") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "streamName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDescribeStream :: DescribeStream Source #

Create a value of DescribeStream with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:exclusiveStartShardId:DescribeStream', describeStream_exclusiveStartShardId - The shard ID of the shard to start with.

Specify this parameter to indicate that you want to describe the stream starting with the shard whose ID immediately follows ExclusiveStartShardId.

If you don't specify this parameter, the default behavior for DescribeStream is to describe the stream starting with the first shard in the stream.

$sel:limit:DescribeStream', describeStream_limit - The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.

DescribeStream, describeStream_streamARN - The ARN of the stream.

DescribeStream, describeStream_streamName - The name of the stream to describe.

Request Lenses

describeStream_exclusiveStartShardId :: Lens' DescribeStream (Maybe Text) Source #

The shard ID of the shard to start with.

Specify this parameter to indicate that you want to describe the stream starting with the shard whose ID immediately follows ExclusiveStartShardId.

If you don't specify this parameter, the default behavior for DescribeStream is to describe the stream starting with the first shard in the stream.

describeStream_limit :: Lens' DescribeStream (Maybe Natural) Source #

The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.

describeStream_streamName :: Lens' DescribeStream (Maybe Text) Source #

The name of the stream to describe.

Destructuring the Response

data DescribeStreamResponse Source #

Represents the output for DescribeStream.

See: newDescribeStreamResponse smart constructor.

Constructors

DescribeStreamResponse' 

Fields

  • httpStatus :: Int

    The response's http status code.

  • streamDescription :: StreamDescription

    The current status of the stream, the stream Amazon Resource Name (ARN), an array of shard objects that comprise the stream, and whether there are more shards available.

Instances

Instances details
Generic DescribeStreamResponse Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Associated Types

type Rep DescribeStreamResponse :: Type -> Type #

Read DescribeStreamResponse Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Show DescribeStreamResponse Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

NFData DescribeStreamResponse Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

Methods

rnf :: DescribeStreamResponse -> () #

Eq DescribeStreamResponse Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

type Rep DescribeStreamResponse Source # 
Instance details

Defined in Amazonka.Kinesis.DescribeStream

type Rep DescribeStreamResponse = D1 ('MetaData "DescribeStreamResponse" "Amazonka.Kinesis.DescribeStream" "amazonka-kinesis-2.0-AW1spVPMUGf3LUqQQ22bci" 'False) (C1 ('MetaCons "DescribeStreamResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "streamDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 StreamDescription)))

newDescribeStreamResponse Source #

Create a value of DescribeStreamResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:httpStatus:DescribeStreamResponse', describeStreamResponse_httpStatus - The response's http status code.

$sel:streamDescription:DescribeStreamResponse', describeStreamResponse_streamDescription - The current status of the stream, the stream Amazon Resource Name (ARN), an array of shard objects that comprise the stream, and whether there are more shards available.

Response Lenses

describeStreamResponse_streamDescription :: Lens' DescribeStreamResponse StreamDescription Source #

The current status of the stream, the stream Amazon Resource Name (ARN), an array of shard objects that comprise the stream, and whether there are more shards available.