1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// A structure that contains the details of an alternate contact associated with an
// Amazon Web Services account
type AlternateContact struct {
// The type of alternate contact.
AlternateContactType AlternateContactType
// The email address associated with this alternate contact.
EmailAddress *string
// The name associated with this alternate contact.
Name *string
// The phone number associated with this alternate contact.
PhoneNumber *string
// The title associated with this alternate contact.
Title *string
noSmithyDocumentSerde
}
// Contains the details of the primary contact information associated with an
// Amazon Web Services account.
type ContactInformation struct {
// The first line of the primary contact address.
//
// This member is required.
AddressLine1 *string
// The city of the primary contact address.
//
// This member is required.
City *string
// The ISO-3166 two-letter country code for the primary contact address.
//
// This member is required.
CountryCode *string
// The full name of the primary contact address.
//
// This member is required.
FullName *string
// The phone number of the primary contact information. The number will be
// validated and, in some countries, checked for activation.
//
// This member is required.
PhoneNumber *string
// The postal code of the primary contact address.
//
// This member is required.
PostalCode *string
// The second line of the primary contact address, if any.
AddressLine2 *string
// The third line of the primary contact address, if any.
AddressLine3 *string
// The name of the company associated with the primary contact information, if any.
CompanyName *string
// The district or county of the primary contact address, if any.
DistrictOrCounty *string
// The state or region of the primary contact address. This field is required in
// selected countries.
StateOrRegion *string
// The URL of the website associated with the primary contact information, if any.
WebsiteUrl *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|