driftctl/pkg/resource/aws/aws_iam_user.go

31 lines
918 B
Go
Raw Normal View History

// GENERATED, DO NOT EDIT THIS FILE
package aws
2021-03-25 11:13:52 +00:00
import "github.com/zclconf/go-cty/cty"
const AwsIamUserResourceType = "aws_iam_user"
type AwsIamUser struct {
Arn *string `cty:"arn" computed:"true"`
ForceDestroy *bool `cty:"force_destroy" diff:"-"`
Id string `cty:"id" computed:"true"`
Name *string `cty:"name"`
Path *string `cty:"path"`
PermissionsBoundary *string `cty:"permissions_boundary"`
Tags map[string]string `cty:"tags"`
UniqueId *string `cty:"unique_id" computed:"true"`
2021-03-25 11:13:52 +00:00
CtyVal *cty.Value `diff:"-"`
}
func (r *AwsIamUser) TerraformId() string {
return r.Id
}
func (r *AwsIamUser) TerraformType() string {
return AwsIamUserResourceType
}
2021-03-25 11:13:52 +00:00
func (r *AwsIamUser) CtyValue() *cty.Value {
return r.CtyVal
}