21 lines
522 B
Go
21 lines
522 B
Go
// GENERATED, DO NOT EDIT THIS FILE
|
|
package aws
|
|
|
|
const AwsIamUserPolicyResourceType = "aws_iam_user_policy"
|
|
|
|
type AwsIamUserPolicy struct {
|
|
Id string `cty:"id" computed:"true"`
|
|
Name *string `cty:"name" computed:"true"`
|
|
NamePrefix *string `cty:"name_prefix"`
|
|
Policy *string `cty:"policy" jsonstring:"true"`
|
|
User *string `cty:"user"`
|
|
}
|
|
|
|
func (r *AwsIamUserPolicy) TerraformId() string {
|
|
return r.Id
|
|
}
|
|
|
|
func (r *AwsIamUserPolicy) TerraformType() string {
|
|
return AwsIamUserPolicyResourceType
|
|
}
|