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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSite.AddressPropertystatic final classAn implementation forCfnSite.AddressProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddressLine1
- See Also:
-
getCity
- See Also:
-
getContactName
- See Also:
-
getContactPhoneNumber
- See Also:
-
getCountryCode
- See Also:
-
getPostalCode
- See Also:
-
getStateOrRegion
- See Also:
-
getAddressLine2
- See Also:
-
getAddressLine3
- See Also:
-
getDistrictOrCounty
- See Also:
-
getMunicipality
- See Also:
-
builder
- Returns:
- a
CfnSite.AddressProperty.BuilderofCfnSite.AddressProperty
-