26 lines
591 B
Go
26 lines
591 B
Go
// GENERATED, DO NOT EDIT THIS FILE
|
|
package aws
|
|
|
|
import "github.com/zclconf/go-cty/cty"
|
|
|
|
const AwsSqsQueuePolicyResourceType = "aws_sqs_queue_policy"
|
|
|
|
type AwsSqsQueuePolicy struct {
|
|
Id string `cty:"id" computed:"true"`
|
|
Policy *string `cty:"policy" jsonstring:"true"`
|
|
QueueUrl *string `cty:"queue_url"`
|
|
CtyVal *cty.Value `diff:"-"`
|
|
}
|
|
|
|
func (r *AwsSqsQueuePolicy) TerraformId() string {
|
|
return r.Id
|
|
}
|
|
|
|
func (r *AwsSqsQueuePolicy) TerraformType() string {
|
|
return AwsSqsQueuePolicyResourceType
|
|
}
|
|
|
|
func (r *AwsSqsQueuePolicy) CtyValue() *cty.Value {
|
|
return r.CtyVal
|
|
}
|