class GeoEngineer::Resources::AwsS3BucketNotification

AwsS3BucketNotification is the aws_s3_bucket_notification terrform resource,

{www.terraform.io/docs/providers/aws/r/s3_bucket_notification.html Terraform Docs}

Public Instance Methods

support_tags?() click to toggle source
# File lib/geoengineer/resources/aws_s3_bucket_notification.rb, line 27
def support_tags?
  false
end
to_terraform_state() click to toggle source
# File lib/geoengineer/resources/aws_s3_bucket_notification.rb, line 31
def to_terraform_state
  tfstate = super
  tfstate[:primary][:attributes] = {
    'bucket' => bucket
  }
  tfstate
end