amazonka-kinesis-1.4.1: Amazon Kinesis SDK.

Copyright(c) 2013-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.Kinesis.DescribeStream

Contents

Description

Describes the specified Amazon Kinesis stream.

The information about the stream includes its current status, its Amazon Resource Name (ARN), and an array of shard objects. For each shard object, there is information about 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. A sequence number is the identifier associated with every record ingested in the stream. The sequence number is assigned when a record is put into the stream.

You can limit the number of returned shards using the Limit parameter. The number of shards in a stream may be too large to return from a single call to DescribeStream. You can detect this by using the HasMoreShards flag in the returned output. HasMoreShards is set to true when there is more data available.

DescribeStream is a paginated operation. If there are more shards available, you can request them using the shard ID of the last shard returned. Specify this ID in the ExclusiveStartShardId parameter in a subsequent request to DescribeStream.

There are no guarantees about the chronological order shards returned in DescribeStream results. If you want to process shards in chronological order, use ParentShardId to track lineage to the oldest shard.

DescribeStream has a limit of 10 transactions per second per account.

This operation returns paginated results.

Synopsis

Creating a Request

describeStream Source #

Creates a value of DescribeStream with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data DescribeStream Source #

Represents the input for DescribeStream.

See: describeStream smart constructor.

Instances

Eq DescribeStream Source # 
Data DescribeStream Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DescribeStream -> c DescribeStream #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DescribeStream #

toConstr :: DescribeStream -> Constr #

dataTypeOf :: DescribeStream -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DescribeStream) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DescribeStream) #

gmapT :: (forall b. Data b => b -> b) -> DescribeStream -> DescribeStream #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DescribeStream -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DescribeStream -> r #

gmapQ :: (forall d. Data d => d -> u) -> DescribeStream -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DescribeStream -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DescribeStream -> m DescribeStream #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeStream -> m DescribeStream #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeStream -> m DescribeStream #

Read DescribeStream Source # 
Show DescribeStream Source # 
Generic DescribeStream Source # 

Associated Types

type Rep DescribeStream :: * -> * #

Hashable DescribeStream Source # 
ToJSON DescribeStream Source # 
NFData DescribeStream Source # 

Methods

rnf :: DescribeStream -> () #

AWSPager DescribeStream Source # 
AWSRequest DescribeStream Source # 
ToQuery DescribeStream Source # 
ToPath DescribeStream Source # 
ToHeaders DescribeStream Source # 
type Rep DescribeStream Source # 
type Rep DescribeStream = D1 (MetaData "DescribeStream" "Network.AWS.Kinesis.DescribeStream" "amazonka-kinesis-1.4.1-JKMseqtqhHCCnc3IBujcO8" False) (C1 (MetaCons "DescribeStream'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dExclusiveStartShardId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_dLimit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat))) (S1 (MetaSel (Just Symbol "_dStreamName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs DescribeStream Source # 

Request Lenses

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

The shard ID of the shard to start with.

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

The maximum number of shards to return.

dStreamName :: Lens' DescribeStream Text Source #

The name of the stream to describe.

Destructuring the Response

describeStreamResponse Source #

Creates a value of DescribeStreamResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data DescribeStreamResponse Source #

Represents the output for DescribeStream.

See: describeStreamResponse smart constructor.

Instances

Eq DescribeStreamResponse Source # 
Data DescribeStreamResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DescribeStreamResponse -> c DescribeStreamResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DescribeStreamResponse #

toConstr :: DescribeStreamResponse -> Constr #

dataTypeOf :: DescribeStreamResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DescribeStreamResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DescribeStreamResponse) #

gmapT :: (forall b. Data b => b -> b) -> DescribeStreamResponse -> DescribeStreamResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DescribeStreamResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DescribeStreamResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> DescribeStreamResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DescribeStreamResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DescribeStreamResponse -> m DescribeStreamResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeStreamResponse -> m DescribeStreamResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DescribeStreamResponse -> m DescribeStreamResponse #

Read DescribeStreamResponse Source # 
Show DescribeStreamResponse Source # 
Generic DescribeStreamResponse Source # 
NFData DescribeStreamResponse Source # 

Methods

rnf :: DescribeStreamResponse -> () #

type Rep DescribeStreamResponse Source # 
type Rep DescribeStreamResponse = D1 (MetaData "DescribeStreamResponse" "Network.AWS.Kinesis.DescribeStream" "amazonka-kinesis-1.4.1-JKMseqtqhHCCnc3IBujcO8" False) (C1 (MetaCons "DescribeStreamResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_dsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int)) (S1 (MetaSel (Just Symbol "_dsrsStreamDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 StreamDescription))))

Response Lenses

dsrsStreamDescription :: Lens' DescribeStreamResponse StreamDescription Source #

The current status of the stream, the stream ARN, an array of shard objects that comprise the stream, and states whether there are more shards available.