27 lines
690 B
Go
27 lines
690 B
Go
// GENERATED, DO NOT EDIT THIS FILE
|
|
package aws
|
|
|
|
import "github.com/zclconf/go-cty/cty"
|
|
|
|
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"`
|
|
CtyVal *cty.Value `diff:"-"`
|
|
}
|
|
|
|
func (r *AwsRouteTableAssociation) TerraformId() string {
|
|
return r.Id
|
|
}
|
|
|
|
func (r *AwsRouteTableAssociation) TerraformType() string {
|
|
return AwsRouteTableAssociationResourceType
|
|
}
|
|
|
|
func (r *AwsRouteTableAssociation) CtyValue() *cty.Value {
|
|
return r.CtyVal
|
|
}
|