driftctl/pkg/resource/aws/aws_iam_policy_attachment.go

22 lines
595 B
Go

// GENERATED, DO NOT EDIT THIS FILE
package aws
const AwsIamPolicyAttachmentResourceType = "aws_iam_policy_attachment"
type AwsIamPolicyAttachment struct {
Groups *[]string `cty:"groups"`
Id string `cty:"id" diff:"Id, identifier" computed:"true"`
Name *string `cty:"name" diff:"-"`
PolicyArn *string `cty:"policy_arn"`
Roles *[]string `cty:"roles"`
Users *[]string `cty:"users"`
}
func (r *AwsIamPolicyAttachment) TerraformId() string {
return r.Id
}
func (r *AwsIamPolicyAttachment) TerraformType() string {
return AwsIamPolicyAttachmentResourceType
}