We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e20d4 commit e9a5210Copy full SHA for e9a5210
internal/service/firehose/delivery_stream_test.go
@@ -24,6 +24,16 @@ import (
24
"github.com/hashicorp/terraform-provider-aws/names"
25
)
26
27
+func init() {
28
+ acctest.RegisterServiceErrorCheckFunc(names.FirehoseServiceID, testAccErrorCheckSkip)
29
+}
30
+
31
+func testAccErrorCheckSkip(t *testing.T) resource.ErrorCheckFunc {
32
+ return acctest.ErrorCheckSkipMessagesContaining(t,
33
+ "Read from timestamp feature is not currently available",
34
+ )
35
36
37
func TestAccFirehoseDeliveryStream_basic(t *testing.T) {
38
ctx := acctest.Context(t)
39
var stream types.DeliveryStreamDescription
0 commit comments