Kinesis.Waiter.
StreamNotExists
¶waiter = client.get_waiter('stream_not_exists')
wait
(**kwargs)¶Polls Kinesis.Client.describe_stream()
every 10 seconds until a successful state is reached. An error is returned after 18 failed checks.
See also: AWS API Documentation
Request Syntax
waiter.wait(
StreamName='string',
Limit=123,
ExclusiveStartShardId='string',
StreamARN='string',
WaiterConfig={
'Delay': 123,
'MaxAttempts': 123
}
)
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.
A dictionary that provides parameters to control waiting behavior.
The amount of time in seconds to wait between attempts. Default: 10
The maximum number of attempts to be made. Default: 18
None