Interface CfnSite.AddressProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSite.AddressProperty.Jsii$Proxy
Enclosing class:
CfnSite

@Stability(Stable) public static interface CfnSite.AddressProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.outposts.*;
 AddressProperty addressProperty = AddressProperty.builder()
         .addressLine1("addressLine1")
         .city("city")
         .contactName("contactName")
         .contactPhoneNumber("contactPhoneNumber")
         .countryCode("countryCode")
         .postalCode("postalCode")
         .stateOrRegion("stateOrRegion")
         // the properties below are optional
         .addressLine2("addressLine2")
         .addressLine3("addressLine3")
         .districtOrCounty("districtOrCounty")
         .municipality("municipality")
         .build();
 

See Also: