| 123456789101112131415161718192021222324252627282930 |
- // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
- package kinesis
- import (
- "github.com/aws/aws-sdk-go/private/waiter"
- )
- func (c *Kinesis) WaitUntilStreamExists(input *DescribeStreamInput) error {
- waiterCfg := waiter.Config{
- Operation: "DescribeStream",
- Delay: 10,
- MaxAttempts: 18,
- Acceptors: []waiter.WaitAcceptor{
- {
- State: "success",
- Matcher: "path",
- Argument: "StreamDescription.StreamStatus",
- Expected: "ACTIVE",
- },
- },
- }
- w := waiter.Waiter{
- Client: c,
- Input: input,
- Config: waiterCfg,
- }
- return w.Wait()
- }
|