Interface GetClusterCredentialsWithIamResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetClusterCredentialsWithIamResponse.Builder,GetClusterCredentialsWithIamResponse>
,RedshiftResponse.Builder
,SdkBuilder<GetClusterCredentialsWithIamResponse.Builder,GetClusterCredentialsWithIamResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetClusterCredentialsWithIamResponse
public static interface GetClusterCredentialsWithIamResponse.Builder extends RedshiftResponse.Builder, SdkPojo, CopyableBuilder<GetClusterCredentialsWithIamResponse.Builder,GetClusterCredentialsWithIamResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetClusterCredentialsWithIamResponse.Builder
dbPassword(String dbPassword)
A temporary password that you provide when you connect to a database.GetClusterCredentialsWithIamResponse.Builder
dbUser(String dbUser)
A database user name that you provide when you connect to a database.GetClusterCredentialsWithIamResponse.Builder
expiration(Instant expiration)
The time (UTC) when the temporary password expires.GetClusterCredentialsWithIamResponse.Builder
nextRefreshTime(Instant nextRefreshTime)
Reserved for future use.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.redshift.model.RedshiftResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
dbUser
GetClusterCredentialsWithIamResponse.Builder dbUser(String dbUser)
A database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity.
- Parameters:
dbUser
- A database user name that you provide when you connect to a database. The database user is mapped 1:1 to the source IAM identity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dbPassword
GetClusterCredentialsWithIamResponse.Builder dbPassword(String dbPassword)
A temporary password that you provide when you connect to a database.
- Parameters:
dbPassword
- A temporary password that you provide when you connect to a database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expiration
GetClusterCredentialsWithIamResponse.Builder expiration(Instant expiration)
The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.
- Parameters:
expiration
- The time (UTC) when the temporary password expires. After this timestamp, a log in with the temporary password fails.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextRefreshTime
GetClusterCredentialsWithIamResponse.Builder nextRefreshTime(Instant nextRefreshTime)
Reserved for future use.
- Parameters:
nextRefreshTime
- Reserved for future use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-