Sean McGrail

Results 30 comments of Sean McGrail

This code snippet does appear to work, though the serialization is different. It would provide a temporary work around at least: ```go _, err = client.PutBucketLifecycleConfiguration(context.TODO(), &s3.PutBucketLifecycleConfigurationInput{ Bucket: aws.String("mcgrails-test-data"), LifecycleConfiguration:...

This seems to be broken in the S3 Control model as well, for different, currently unknown, reasons... ```go client := s3control.NewFromConfig(cfg) _, err = client.PutBucketLifecycleConfiguration(context.TODO(), &s3control.PutBucketLifecycleConfigurationInput{ AccountId: aws.String("accountId"), Bucket: aws.String("mcgrails-test-data"),...

All the waiters present in V1 SDK version of the CloudFormation client are now available in the V2 SDK version.

Thanks for reaching out to us @AustinGomez . I believe this particular statement is the documentation needs some clarification, and we should take an action to update it to make...

Waiter was added back in `v.1.4.0` of the route53 module. https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/route53#NewResourceRecordSetsChangedWaiter

@karlc1 can you follow the guide for [Logging](https://aws.github.io/aws-sdk-go-v2/docs/configuring-sdk/logging/) in the SDK and enable the `aws.LogResponseWithBody` log mode option? We just want to validate whether there is content over the wire...

Thank you for reporting this issue @lloydchang , I have confirmed this behavior and have reached out to the service team internally.

This concept was introduced when we added support for Smithy [document](https://awslabs.github.io/smithy/2.0/spec/simple-types.html?highlight=document#document) shapes in the code generator. The background for this decision was we wanted to forgo making a one-way door...

The Smithy code-generator currently doesn't have an opinionated structure on how endpoints are set or determined for a client. So the base generated client does not generate or register middleware...

The first thing that comes to mind is whether you are missing protocol generator implementation? For example are you trying to use the code generator for just generating the Go...