Interface ClientAuthenticationSettingInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClientAuthenticationSettingInfo.Builder,ClientAuthenticationSettingInfo>,SdkBuilder<ClientAuthenticationSettingInfo.Builder,ClientAuthenticationSettingInfo>,SdkPojo
- Enclosing class:
- ClientAuthenticationSettingInfo
public static interface ClientAuthenticationSettingInfo.Builder extends SdkPojo, CopyableBuilder<ClientAuthenticationSettingInfo.Builder,ClientAuthenticationSettingInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClientAuthenticationSettingInfo.BuilderlastUpdatedDateTime(Instant lastUpdatedDateTime)The date and time when the status of the client authentication type was last updated.ClientAuthenticationSettingInfo.Builderstatus(String status)Whether the client authentication type is enabled or disabled for the specified directory.ClientAuthenticationSettingInfo.Builderstatus(ClientAuthenticationStatus status)Whether the client authentication type is enabled or disabled for the specified directory.ClientAuthenticationSettingInfo.Buildertype(String type)The type of client authentication for the specified directory.ClientAuthenticationSettingInfo.Buildertype(ClientAuthenticationType type)The type of client authentication for the specified directory.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
type
ClientAuthenticationSettingInfo.Builder type(String type)
The type of client authentication for the specified directory. If no type is specified, a list of all client authentication types that are supported for the directory is retrieved.
- Parameters:
type- The type of client authentication for the specified directory. If no type is specified, a list of all client authentication types that are supported for the directory is retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientAuthenticationType,ClientAuthenticationType
-
type
ClientAuthenticationSettingInfo.Builder type(ClientAuthenticationType type)
The type of client authentication for the specified directory. If no type is specified, a list of all client authentication types that are supported for the directory is retrieved.
- Parameters:
type- The type of client authentication for the specified directory. If no type is specified, a list of all client authentication types that are supported for the directory is retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientAuthenticationType,ClientAuthenticationType
-
status
ClientAuthenticationSettingInfo.Builder status(String status)
Whether the client authentication type is enabled or disabled for the specified directory.
- Parameters:
status- Whether the client authentication type is enabled or disabled for the specified directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientAuthenticationStatus,ClientAuthenticationStatus
-
status
ClientAuthenticationSettingInfo.Builder status(ClientAuthenticationStatus status)
Whether the client authentication type is enabled or disabled for the specified directory.
- Parameters:
status- Whether the client authentication type is enabled or disabled for the specified directory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientAuthenticationStatus,ClientAuthenticationStatus
-
lastUpdatedDateTime
ClientAuthenticationSettingInfo.Builder lastUpdatedDateTime(Instant lastUpdatedDateTime)
The date and time when the status of the client authentication type was last updated.
- Parameters:
lastUpdatedDateTime- The date and time when the status of the client authentication type was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-