Interface SdkConfigurationProperty.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SdkConfigurationProperty.Builder,SdkConfigurationProperty>,SdkBuilder<SdkConfigurationProperty.Builder,SdkConfigurationProperty>,SdkPojo
- Enclosing class:
- SdkConfigurationProperty
public static interface SdkConfigurationProperty.Builder extends SdkPojo, CopyableBuilder<SdkConfigurationProperty.Builder,SdkConfigurationProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SdkConfigurationProperty.BuilderdefaultValue(String defaultValue)The default value of an SdkType configuration property.SdkConfigurationProperty.Builderdescription(String description)The description of an SdkType configuration property.SdkConfigurationProperty.BuilderfriendlyName(String friendlyName)The user-friendly name of an SdkType configuration property.SdkConfigurationProperty.Buildername(String name)The name of a an SdkType configuration property.SdkConfigurationProperty.Builderrequired(Boolean required)A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false).-
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
-
name
SdkConfigurationProperty.Builder name(String name)
The name of a an SdkType configuration property.
- Parameters:
name- The name of a an SdkType configuration property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
friendlyName
SdkConfigurationProperty.Builder friendlyName(String friendlyName)
The user-friendly name of an SdkType configuration property.
- Parameters:
friendlyName- The user-friendly name of an SdkType configuration property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
SdkConfigurationProperty.Builder description(String description)
The description of an SdkType configuration property.
- Parameters:
description- The description of an SdkType configuration property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
required
SdkConfigurationProperty.Builder required(Boolean required)
A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (
true) or not (false).- Parameters:
required- A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValue
SdkConfigurationProperty.Builder defaultValue(String defaultValue)
The default value of an SdkType configuration property.
- Parameters:
defaultValue- The default value of an SdkType configuration property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-