Class AlternateIdentifier
- java.lang.Object
-
- software.amazon.awssdk.services.identitystore.model.AlternateIdentifier
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<AlternateIdentifier.Builder,AlternateIdentifier>
@Generated("software.amazon.awssdk:codegen") public final class AlternateIdentifier extends Object implements SdkPojo, Serializable, ToCopyableBuilder<AlternateIdentifier.Builder,AlternateIdentifier>
A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAlternateIdentifier.Builderstatic classAlternateIdentifier.Type
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AlternateIdentifier.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)ExternalIdexternalId()The identifier issued to this resource by an external identity provider.static AlternateIdentifierfromExternalId(Consumer<ExternalId.Builder> externalId)Create an instance of this class withexternalId()initialized to the given value.static AlternateIdentifierfromExternalId(ExternalId externalId)Create an instance of this class withexternalId()initialized to the given value.static AlternateIdentifierfromUniqueAttribute(Consumer<UniqueAttribute.Builder> uniqueAttribute)Create an instance of this class withuniqueAttribute()initialized to the given value.static AlternateIdentifierfromUniqueAttribute(UniqueAttribute uniqueAttribute)Create an instance of this class withuniqueAttribute()initialized to the given value.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()List<SdkField<?>>sdkFields()static Class<? extends AlternateIdentifier.Builder>serializableBuilderClass()AlternateIdentifier.BuildertoBuilder()StringtoString()Returns a string representation of this object.AlternateIdentifier.Typetype()Retrieve an enum value representing which member of this object is populated.UniqueAttributeuniqueAttribute()An entity attribute that's unique to a specific entity.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
externalId
public final ExternalId externalId()
The identifier issued to this resource by an external identity provider.
- Returns:
- The identifier issued to this resource by an external identity provider.
-
uniqueAttribute
public final UniqueAttribute uniqueAttribute()
An entity attribute that's unique to a specific entity.
- Returns:
- An entity attribute that's unique to a specific entity.
-
toBuilder
public AlternateIdentifier.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<AlternateIdentifier.Builder,AlternateIdentifier>
-
builder
public static AlternateIdentifier.Builder builder()
-
serializableBuilderClass
public static Class<? extends AlternateIdentifier.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
fromExternalId
public static AlternateIdentifier fromExternalId(ExternalId externalId)
Create an instance of this class withexternalId()initialized to the given value.The identifier issued to this resource by an external identity provider.
- Parameters:
externalId- The identifier issued to this resource by an external identity provider.
-
fromExternalId
public static AlternateIdentifier fromExternalId(Consumer<ExternalId.Builder> externalId)
Create an instance of this class withexternalId()initialized to the given value.The identifier issued to this resource by an external identity provider.
- Parameters:
externalId- The identifier issued to this resource by an external identity provider.
-
fromUniqueAttribute
public static AlternateIdentifier fromUniqueAttribute(UniqueAttribute uniqueAttribute)
Create an instance of this class withuniqueAttribute()initialized to the given value.An entity attribute that's unique to a specific entity.
- Parameters:
uniqueAttribute- An entity attribute that's unique to a specific entity.
-
fromUniqueAttribute
public static AlternateIdentifier fromUniqueAttribute(Consumer<UniqueAttribute.Builder> uniqueAttribute)
Create an instance of this class withuniqueAttribute()initialized to the given value.An entity attribute that's unique to a specific entity.
- Parameters:
uniqueAttribute- An entity attribute that's unique to a specific entity.
-
type
public AlternateIdentifier.Type type()
Retrieve an enum value representing which member of this object is populated. When this class is returned in a service response, this will beAlternateIdentifier.Type.UNKNOWN_TO_SDK_VERSIONif the service returned a member that is only known to a newer SDK version. When this class is created directly in your code, this will beAlternateIdentifier.Type.UNKNOWN_TO_SDK_VERSIONif zero members are set, andnullif more than one member is set.
-
-