Skip to content

Commit

Permalink
Add comment for errCodeUnsupportedOperation
Browse files Browse the repository at this point in the history
  • Loading branch information
a3626a committed Jun 2, 2024
1 parent 83eefea commit e10f5ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions internal/service/s3/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ const (
errCodeReplicationConfigurationNotFound = "ReplicationConfigurationNotFoundError"
errCodeServerSideEncryptionConfigurationNotFound = "ServerSideEncryptionConfigurationNotFoundError"
errCodeUnsupportedArgument = "UnsupportedArgument"
// errCodeXNotImplemented is returned from third-party S3 API implementations.
// Reference: https://github.com/hashicorp/terraform-provider-aws/issues/14645.
// errCodeXNotImplemented, errCodeUnsupportedOperation are returned from third-party S3 API implementations.
// References:
// https://github.com/hashicorp/terraform-provider-aws/issues/14645.
// https://github.com/hashicorp/terraform-provider-aws/pull/37801.
errCodeXNotImplemented = "XNotImplemented"
errCodeUnsupportedOperation = "UnsupportedOperation"
)
Expand Down

0 comments on commit e10f5ff

Please sign in to comment.