31 lines
573 B
Go
31 lines
573 B
Go
|
// 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()
|
||
|
}
|