Interface CfnUser.AddressesItemsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUser.AddressesItemsProperty.Jsii$Proxy
- Enclosing class:
CfnUser
@Stability(Stable)
public static interface CfnUser.AddressesItemsProperty
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.identitystore.*;
AddressesItemsProperty addressesItemsProperty = AddressesItemsProperty.builder()
.country("country")
.formatted("formatted")
.locality("locality")
.postalCode("postalCode")
.primary(false)
.region("region")
.streetAddress("streetAddress")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUser.AddressesItemsPropertystatic final classAn implementation forCfnUser.AddressesItemsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe country of the address.default StringA formatted version of the address for display.default StringA string of the address locality.default StringThe postal code of the address.default ObjectWhether this is the primary address.default StringThe region of the address.default StringThe street of the address.default StringgetType()The type of address.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCountry
The country of the address.- See Also:
-
getFormatted
A formatted version of the address for display.- See Also:
-
getLocality
A string of the address locality.- See Also:
-
getPostalCode
The postal code of the address.- See Also:
-
getPrimary
Whether this is the primary address.Returns union: either
BooleanorIResolvable- See Also:
-
getRegion
The region of the address.- See Also:
-
getStreetAddress
The street of the address.- See Also:
-
getType
The type of address.- See Also:
-
builder
-