Class OAuth2Credentials
- java.lang.Object
-
- software.amazon.awssdk.services.appflow.model.OAuth2Credentials
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<OAuth2Credentials.Builder,OAuth2Credentials>
@Generated("software.amazon.awssdk:codegen") public final class OAuth2Credentials extends Object implements SdkPojo, Serializable, ToCopyableBuilder<OAuth2Credentials.Builder,OAuth2Credentials>
The OAuth 2.0 credentials required for OAuth 2.0 authentication.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceOAuth2Credentials.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringaccessToken()The access token used to access the connector on your behalf.static OAuth2Credentials.Builderbuilder()StringclientId()The identifier for the desired client.StringclientSecret()The client secret used by the OAuth client to authenticate to the authorization server.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()ConnectorOAuthRequestoAuthRequest()Returns the value of the OAuthRequest property for this object.StringrefreshToken()The refresh token used to refresh an expired access token.List<SdkField<?>>sdkFields()static Class<? extends OAuth2Credentials.Builder>serializableBuilderClass()OAuth2Credentials.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
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 identifier for the desired client.
- Returns:
- The identifier for the desired client.
-
clientSecret
public final String clientSecret()
The client secret used by the OAuth client to authenticate to the authorization server.
- Returns:
- The client secret used by the OAuth client to authenticate to the authorization server.
-
accessToken
public final String accessToken()
The access token used to access the connector on your behalf.
- Returns:
- The access token used to access the connector on your behalf.
-
refreshToken
public final String refreshToken()
The refresh token used to refresh an expired access token.
- Returns:
- The refresh token used to refresh an expired access token.
-
oAuthRequest
public final ConnectorOAuthRequest oAuthRequest()
Returns the value of the OAuthRequest property for this object.- Returns:
- The value of the OAuthRequest property for this object.
-
toBuilder
public OAuth2Credentials.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<OAuth2Credentials.Builder,OAuth2Credentials>
-
builder
public static OAuth2Credentials.Builder builder()
-
serializableBuilderClass
public static Class<? extends OAuth2Credentials.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.
-
-