Interface InputConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputConfiguration.Builder,InputConfiguration>,SdkBuilder<InputConfiguration.Builder,InputConfiguration>,SdkPojo
- Enclosing class:
- InputConfiguration
public static interface InputConfiguration.Builder extends SdkPojo, CopyableBuilder<InputConfiguration.Builder,InputConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputConfiguration.BuildercreationTime(Instant creationTime)The time the input was created.InputConfiguration.BuilderinputArn(String inputArn)The ARN of the input.InputConfiguration.BuilderinputDescription(String inputDescription)A brief description of the input.InputConfiguration.BuilderinputName(String inputName)The name of the input.InputConfiguration.BuilderlastUpdateTime(Instant lastUpdateTime)The last time the input was updated.InputConfiguration.Builderstatus(String status)The status of the input.InputConfiguration.Builderstatus(InputStatus status)The status of the input.-
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
-
inputName
InputConfiguration.Builder inputName(String inputName)
The name of the input.
- Parameters:
inputName- The name of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputDescription
InputConfiguration.Builder inputDescription(String inputDescription)
A brief description of the input.
- Parameters:
inputDescription- A brief description of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputArn
InputConfiguration.Builder inputArn(String inputArn)
The ARN of the input.
- Parameters:
inputArn- The ARN of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
InputConfiguration.Builder creationTime(Instant creationTime)
The time the input was created.
- Parameters:
creationTime- The time the input was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdateTime
InputConfiguration.Builder lastUpdateTime(Instant lastUpdateTime)
The last time the input was updated.
- Parameters:
lastUpdateTime- The last time the input was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
InputConfiguration.Builder status(String status)
The status of the input.
- Parameters:
status- The status of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputStatus,InputStatus
-
status
InputConfiguration.Builder status(InputStatus status)
The status of the input.
- Parameters:
status- The status of the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputStatus,InputStatus
-
-