Interface Settings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Settings.Builder,Settings>,SdkBuilder<Settings.Builder,Settings>,SdkPojo
- Enclosing class:
- Settings
public static interface Settings.Builder extends SdkPojo, CopyableBuilder<Settings.Builder,Settings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Settings.BuildermfaTypes(Collection<MfaTypesElement> mfaTypes)The supported MFA types.Settings.BuildermfaTypes(MfaTypesElement... mfaTypes)The supported MFA types.Settings.BuildermfaTypesWithStrings(String... mfaTypes)The supported MFA types.Settings.BuildermfaTypesWithStrings(Collection<String> mfaTypes)The supported MFA types.Settings.BuildersmsMessage(String smsMessage)The body of the SMS message.-
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
-
mfaTypesWithStrings
Settings.Builder mfaTypesWithStrings(Collection<String> mfaTypes)
The supported MFA types.
- Parameters:
mfaTypes- The supported MFA types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mfaTypesWithStrings
Settings.Builder mfaTypesWithStrings(String... mfaTypes)
The supported MFA types.
- Parameters:
mfaTypes- The supported MFA types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mfaTypes
Settings.Builder mfaTypes(Collection<MfaTypesElement> mfaTypes)
The supported MFA types.
- Parameters:
mfaTypes- The supported MFA types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mfaTypes
Settings.Builder mfaTypes(MfaTypesElement... mfaTypes)
The supported MFA types.
- Parameters:
mfaTypes- The supported MFA types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
smsMessage
Settings.Builder smsMessage(String smsMessage)
The body of the SMS message.
- Parameters:
smsMessage- The body of the SMS message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-