Interface UserAuthConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserAuthConfig.Builder,UserAuthConfig>,SdkBuilder<UserAuthConfig.Builder,UserAuthConfig>,SdkPojo
- Enclosing class:
- UserAuthConfig
public static interface UserAuthConfig.Builder extends SdkPojo, CopyableBuilder<UserAuthConfig.Builder,UserAuthConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserAuthConfig.BuilderauthScheme(String authScheme)The type of authentication that the proxy uses for connections from the proxy to the underlying database.UserAuthConfig.BuilderauthScheme(AuthScheme authScheme)The type of authentication that the proxy uses for connections from the proxy to the underlying database.UserAuthConfig.BuilderclientPasswordAuthType(String clientPasswordAuthType)The type of authentication the proxy uses for connections from clients.UserAuthConfig.BuilderclientPasswordAuthType(ClientPasswordAuthType clientPasswordAuthType)The type of authentication the proxy uses for connections from clients.UserAuthConfig.Builderdescription(String description)A user-specified description about the authentication used by a proxy to log in as a specific database user.UserAuthConfig.BuilderiamAuth(String iamAuth)A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.UserAuthConfig.BuilderiamAuth(IAMAuthMode iamAuth)A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.UserAuthConfig.BuildersecretArn(String secretArn)The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster.UserAuthConfig.BuilderuserName(String userName)The name of the database user to which the proxy connects.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
description
UserAuthConfig.Builder description(String description)
A user-specified description about the authentication used by a proxy to log in as a specific database user.
- Parameters:
description- A user-specified description about the authentication used by a proxy to log in as a specific database user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userName
UserAuthConfig.Builder userName(String userName)
The name of the database user to which the proxy connects.
- Parameters:
userName- The name of the database user to which the proxy connects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authScheme
UserAuthConfig.Builder authScheme(String authScheme)
The type of authentication that the proxy uses for connections from the proxy to the underlying database.
- Parameters:
authScheme- The type of authentication that the proxy uses for connections from the proxy to the underlying database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthScheme,AuthScheme
-
authScheme
UserAuthConfig.Builder authScheme(AuthScheme authScheme)
The type of authentication that the proxy uses for connections from the proxy to the underlying database.
- Parameters:
authScheme- The type of authentication that the proxy uses for connections from the proxy to the underlying database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthScheme,AuthScheme
-
secretArn
UserAuthConfig.Builder secretArn(String secretArn)
The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.
- Parameters:
secretArn- The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iamAuth
UserAuthConfig.Builder iamAuth(String iamAuth)
A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. The
ENABLEDvalue is valid only for proxies with RDS for Microsoft SQL Server.- Parameters:
iamAuth- A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. TheENABLEDvalue is valid only for proxies with RDS for Microsoft SQL Server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IAMAuthMode,IAMAuthMode
-
iamAuth
UserAuthConfig.Builder iamAuth(IAMAuthMode iamAuth)
A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. The
ENABLEDvalue is valid only for proxies with RDS for Microsoft SQL Server.- Parameters:
iamAuth- A value that indicates whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. TheENABLEDvalue is valid only for proxies with RDS for Microsoft SQL Server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IAMAuthMode,IAMAuthMode
-
clientPasswordAuthType
UserAuthConfig.Builder clientPasswordAuthType(String clientPasswordAuthType)
The type of authentication the proxy uses for connections from clients.
- Parameters:
clientPasswordAuthType- The type of authentication the proxy uses for connections from clients.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientPasswordAuthType,ClientPasswordAuthType
-
clientPasswordAuthType
UserAuthConfig.Builder clientPasswordAuthType(ClientPasswordAuthType clientPasswordAuthType)
The type of authentication the proxy uses for connections from clients.
- Parameters:
clientPasswordAuthType- The type of authentication the proxy uses for connections from clients.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ClientPasswordAuthType,ClientPasswordAuthType
-
-