driftctl/pkg/resource/aws/aws_s3_bucket_metric.go

23 lines
529 B
Go

// GENERATED, DO NOT EDIT THIS FILE
package aws
const AwsS3BucketMetricResourceType = "aws_s3_bucket_metric"
type AwsS3BucketMetric struct {
Bucket *string `cty:"bucket"`
Id string `cty:"id" computed:"true"`
Name *string `cty:"name"`
Filter *[]struct {
Prefix *string `cty:"prefix"`
Tags map[string]string `cty:"tags"`
} `cty:"filter"`
}
func (r *AwsS3BucketMetric) TerraformId() string {
return r.Id
}
func (r *AwsS3BucketMetric) TerraformType() string {
return AwsS3BucketMetricResourceType
}