Class RegisterClientResponse
- java.lang.Object
-
- software.amazon.awssdk.core.SdkResponse
-
- software.amazon.awssdk.awscore.AwsResponse
-
- software.amazon.awssdk.services.ssooidc.model.SsoOidcResponse
-
- software.amazon.awssdk.services.ssooidc.model.RegisterClientResponse
-
- All Implemented Interfaces:
SdkPojo,ToCopyableBuilder<RegisterClientResponse.Builder,RegisterClientResponse>
@Generated("software.amazon.awssdk:codegen") public final class RegisterClientResponse extends SsoOidcResponse implements ToCopyableBuilder<RegisterClientResponse.Builder,RegisterClientResponse>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceRegisterClientResponse.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringauthorizationEndpoint()An endpoint that the client can use to request authorization.static RegisterClientResponse.Builderbuilder()StringclientId()The unique identifier string for each client.LongclientIdIssuedAt()Indicates the time at which theclientIdandclientSecretwere issued.StringclientSecret()A secret string generated for the client.LongclientSecretExpiresAt()Indicates the time at which theclientIdandclientSecretwill become invalid.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()List<SdkField<?>>sdkFields()static Class<? extends RegisterClientResponse.Builder>serializableBuilderClass()RegisterClientResponse.BuildertoBuilder()StringtokenEndpoint()An endpoint that the client can use to create tokens.StringtoString()Returns a string representation of this object.-
Methods inherited from class software.amazon.awssdk.services.ssooidc.model.SsoOidcResponse
responseMetadata
-
Methods inherited from class software.amazon.awssdk.core.SdkResponse
sdkHttpResponse
-
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
-
clientId
public final String clientId()
The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
- Returns:
- The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
-
clientSecret
public final String clientSecret()
A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
- Returns:
- A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
-
clientIdIssuedAt
public final Long clientIdIssuedAt()
Indicates the time at which the
clientIdandclientSecretwere issued.- Returns:
- Indicates the time at which the
clientIdandclientSecretwere issued.
-
clientSecretExpiresAt
public final Long clientSecretExpiresAt()
Indicates the time at which the
clientIdandclientSecretwill become invalid.- Returns:
- Indicates the time at which the
clientIdandclientSecretwill become invalid.
-
authorizationEndpoint
public final String authorizationEndpoint()
An endpoint that the client can use to request authorization.
- Returns:
- An endpoint that the client can use to request authorization.
-
tokenEndpoint
public final String tokenEndpoint()
An endpoint that the client can use to create tokens.
- Returns:
- An endpoint that the client can use to create tokens.
-
toBuilder
public RegisterClientResponse.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<RegisterClientResponse.Builder,RegisterClientResponse>- Specified by:
toBuilderin classAwsResponse
-
builder
public static RegisterClientResponse.Builder builder()
-
serializableBuilderClass
public static Class<? extends RegisterClientResponse.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classAwsResponse
-
equals
public final boolean equals(Object obj)
- Overrides:
equalsin classAwsResponse
-
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.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForFieldin classSdkResponse
-
-