(a, b *string)
| 580 | } |
| 581 | |
| 582 | func equalCaseInsensitiveStringPtrs(a, b *string) bool { |
| 583 | if a == nil && b == nil { |
| 584 | return true |
| 585 | } else if a != nil && b != nil { |
| 586 | return strings.EqualFold(*a, *b) |
| 587 | } else { |
| 588 | return false |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | func parseRecordList(args []string, zone *route53types.HostedZone) []dns.RR { |
| 593 | records := []dns.RR{} |