Fix: S3 Bucket does not support attribute type Arn in Fn::GetAtt (#3388)
Fixes #3387
This commit is contained in:
parent
99556620a9
commit
6505c893b8
2 changed files with 36 additions and 0 deletions
|
|
@ -1065,6 +1065,8 @@ class FakeBucket(CloudFormationModel):
|
|||
raise NotImplementedError('"Fn::GetAtt" : [ "{0}" , "DomainName" ]"')
|
||||
elif attribute_name == "WebsiteURL":
|
||||
raise NotImplementedError('"Fn::GetAtt" : [ "{0}" , "WebsiteURL" ]"')
|
||||
elif attribute_name == "Arn":
|
||||
return self.arn
|
||||
raise UnformattedGetAttTemplateException()
|
||||
|
||||
def set_acl(self, acl):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue