driftctl/pkg/resource/aws/aws_route_table_association.go

20 lines
523 B
Go

// GENERATED, DO NOT EDIT THIS FILE
package aws
const AwsRouteTableAssociationResourceType = "aws_route_table_association"
type AwsRouteTableAssociation struct {
GatewayId *string `cty:"gateway_id"`
Id string `cty:"id" computed:"true"`
RouteTableId *string `cty:"route_table_id"`
SubnetId *string `cty:"subnet_id"`
}
func (r *AwsRouteTableAssociation) TerraformId() string {
return r.Id
}
func (r *AwsRouteTableAssociation) TerraformType() string {
return AwsRouteTableAssociationResourceType
}