Translating that directly to Go gives this ``` ...
# golang
i
Translating that directly to Go gives this
Copy code
certValidationDomain, err := route53.NewRecord(ctx, domain+"-validation", &route53.RecordArgs{                                                                                                                     
            Name:    cert.DomainValidationOptions.Index(<http://pulumi.Int|pulumi.Int>(0)).ResourceRecordName(),                                                                                                                               
            Type:    cert.DomainValidationOptions.Index(<http://pulumi.Int|pulumi.Int>(0)).ResourceRecordType(),                                                                                                                               
            Records: pulumi.StringArray{cert.DomainValidationOptions.Index(<http://pulumi.Int|pulumi.Int>(0)).ResourceRecordValue()},                                                                                                          
            ZoneId:  zone.ID(),                                                                                                                                                                                            
            Ttl:     <http://pulumi.Int|pulumi.Int>(600),                                                                                                                                                                                      
        })