Primary Contact
Manages the specified primary contact information associated with an AWS Account.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.account.PrimaryContact;
import com.pulumi.aws.account.PrimaryContactArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new PrimaryContact("test", PrimaryContactArgs.builder()
.addressLine1("123 Any Street")
.city("Seattle")
.companyName("Example Corp, Inc.")
.countryCode("US")
.districtOrCounty("King")
.fullName("My Name")
.phoneNumber("+64211111111")
.postalCode("98101")
.stateOrRegion("WA")
.websiteUrl("https://www.examplecorp.com")
.build());
}
}
Properties
The first line of the primary contact address.
The second line of the primary contact address, if any.
The third line of the primary contact address, if any.
The name of the company associated with the primary contact information, if any.
The ISO-3166 two-letter country code for the primary contact address.
The district or county of the primary contact address, if any.
The phone number of the primary contact information. The number will be validated and, in some countries, checked for activation.
The postal code of the primary contact address.
The state or region of the primary contact address. This field is required in selected countries.
The URL of the website associated with the primary contact information, if any.