-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update S3 and S3 Control Models (#3826)
- Loading branch information
Showing
27 changed files
with
5,473 additions
and
1,059 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package arn | ||
|
||
// S3ObjectLambdaARN represents an ARN for the s3-object-lambda service | ||
type S3ObjectLambdaARN interface { | ||
Resource | ||
|
||
isS3ObjectLambdasARN() | ||
} | ||
|
||
// S3ObjectLambdaAccessPointARN is an S3ObjectLambdaARN for the Access Point resource type | ||
type S3ObjectLambdaAccessPointARN struct { | ||
AccessPointARN | ||
} | ||
|
||
func (s S3ObjectLambdaAccessPointARN) isS3ObjectLambdasARN() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.