Interface UserStackAssociation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserStackAssociation.Builder,UserStackAssociation>,SdkBuilder<UserStackAssociation.Builder,UserStackAssociation>,SdkPojo
- Enclosing class:
- UserStackAssociation
public static interface UserStackAssociation.Builder extends SdkPojo, CopyableBuilder<UserStackAssociation.Builder,UserStackAssociation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserStackAssociation.BuilderauthenticationType(String authenticationType)The authentication type for the user.UserStackAssociation.BuilderauthenticationType(AuthenticationType authenticationType)The authentication type for the user.UserStackAssociation.BuildersendEmailNotification(Boolean sendEmailNotification)Specifies whether a welcome email is sent to a user after the user is created in the user pool.UserStackAssociation.BuilderstackName(String stackName)The name of the stack that is associated with the user.UserStackAssociation.BuilderuserName(String userName)The email address of the user who is associated with the stack.-
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
-
stackName
UserStackAssociation.Builder stackName(String stackName)
The name of the stack that is associated with the user.
- Parameters:
stackName- The name of the stack that is associated with the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userName
UserStackAssociation.Builder userName(String userName)
The email address of the user who is associated with the stack.
Users' email addresses are case-sensitive.
- Parameters:
userName- The email address of the user who is associated with the stack.Users' email addresses are case-sensitive.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationType
UserStackAssociation.Builder authenticationType(String authenticationType)
The authentication type for the user.
- Parameters:
authenticationType- The authentication type for the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthenticationType,AuthenticationType
-
authenticationType
UserStackAssociation.Builder authenticationType(AuthenticationType authenticationType)
The authentication type for the user.
- Parameters:
authenticationType- The authentication type for the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthenticationType,AuthenticationType
-
sendEmailNotification
UserStackAssociation.Builder sendEmailNotification(Boolean sendEmailNotification)
Specifies whether a welcome email is sent to a user after the user is created in the user pool.
- Parameters:
sendEmailNotification- Specifies whether a welcome email is sent to a user after the user is created in the user pool.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-