in pkg/cloudprovider/aws/apis/v1alpha1/zz_generated.deepcopy.go [28:62]
func (in *AWS) DeepCopyInto(out *AWS) {
*out = *in
out.TypeMeta = in.TypeMeta
if in.LaunchTemplate != nil {
in, out := &in.LaunchTemplate, &out.LaunchTemplate
*out = new(string)
**out = **in
}
if in.SubnetSelector != nil {
in, out := &in.SubnetSelector, &out.SubnetSelector
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.SecurityGroupSelector != nil {
in, out := &in.SecurityGroupSelector, &out.SecurityGroupSelector
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.Tags != nil {
in, out := &in.Tags, &out.Tags
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.MetadataOptions != nil {
in, out := &in.MetadataOptions, &out.MetadataOptions
*out = new(MetadataOptions)
(*in).DeepCopyInto(*out)
}
}