github.com/kubernetes-incubator/kube-aws@v0.16.4/pkg/api/subnet_reference.go (about)

     1  package api
     2  
     3  // SubnetReference references one of subnets defined in the top-level of cluster.yaml
     4  type SubnetReference struct {
     5  	// Name is the unique name of subnet to be referenced.
     6  	// The subnet referenced by this name should be defined in the `subnets[]` field in the top-level of cluster.yaml
     7  	Name string `yaml:"name,omitempty"`
     8  }