Interface ComponentBindingPropertiesValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComponentBindingPropertiesValue.Builder,ComponentBindingPropertiesValue>,SdkBuilder<ComponentBindingPropertiesValue.Builder,ComponentBindingPropertiesValue>,SdkPojo
- Enclosing class:
- ComponentBindingPropertiesValue
public static interface ComponentBindingPropertiesValue.Builder extends SdkPojo, CopyableBuilder<ComponentBindingPropertiesValue.Builder,ComponentBindingPropertiesValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ComponentBindingPropertiesValue.BuilderbindingProperties(Consumer<ComponentBindingPropertiesValueProperties.Builder> bindingProperties)Describes the properties to customize with data at runtime.ComponentBindingPropertiesValue.BuilderbindingProperties(ComponentBindingPropertiesValueProperties bindingProperties)Describes the properties to customize with data at runtime.ComponentBindingPropertiesValue.BuilderdefaultValue(String defaultValue)The default value of the property.ComponentBindingPropertiesValue.Buildertype(String type)The property type.-
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
-
type
ComponentBindingPropertiesValue.Builder type(String type)
The property type.
- Parameters:
type- The property type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bindingProperties
ComponentBindingPropertiesValue.Builder bindingProperties(ComponentBindingPropertiesValueProperties bindingProperties)
Describes the properties to customize with data at runtime.
- Parameters:
bindingProperties- Describes the properties to customize with data at runtime.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bindingProperties
default ComponentBindingPropertiesValue.Builder bindingProperties(Consumer<ComponentBindingPropertiesValueProperties.Builder> bindingProperties)
Describes the properties to customize with data at runtime.
This is a convenience method that creates an instance of theComponentBindingPropertiesValueProperties.Builderavoiding the need to create one manually viaComponentBindingPropertiesValueProperties.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobindingProperties(ComponentBindingPropertiesValueProperties).- Parameters:
bindingProperties- a consumer that will call methods onComponentBindingPropertiesValueProperties.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
bindingProperties(ComponentBindingPropertiesValueProperties)
-
defaultValue
ComponentBindingPropertiesValue.Builder defaultValue(String defaultValue)
The default value of the property.
- Parameters:
defaultValue- The default value of the property.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-