driftctl/pkg/resource/aws/aws_nat_gateway.go

23 lines
741 B
Go

// GENERATED, DO NOT EDIT THIS FILE
package aws
const AwsNatGatewayResourceType = "aws_nat_gateway"
type AwsNatGateway struct {
AllocationId *string `cty:"allocation_id"`
Id string `cty:"id" computed:"true"`
NetworkInterfaceId *string `cty:"network_interface_id" computed:"true"`
PrivateIp *string `cty:"private_ip" computed:"true"`
PublicIp *string `cty:"public_ip" computed:"true"`
SubnetId *string `cty:"subnet_id"`
Tags map[string]string `cty:"tags"`
}
func (r *AwsNatGateway) TerraformId() string {
return r.Id
}
func (r *AwsNatGateway) TerraformType() string {
return AwsNatGatewayResourceType
}