Interface InputSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputSummary.Builder,InputSummary>,SdkBuilder<InputSummary.Builder,InputSummary>,SdkPojo
- Enclosing class:
- InputSummary
public static interface InputSummary.Builder extends SdkPojo, CopyableBuilder<InputSummary.Builder,InputSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputSummary.BuildercreationTime(Instant creationTime)The time the input was created.InputSummary.BuilderinputArn(String inputArn)The ARN of the input.InputSummary.BuilderinputDescription(String inputDescription)A brief description of the input.InputSummary.BuilderinputName(String inputName)The name of the input.InputSummary.BuilderlastUpdateTime(Instant lastUpdateTime)The last time the input was updated.InputSummary.Builderstatus(String status)The status of the input.InputSummary.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
InputSummary.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
InputSummary.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
InputSummary.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
InputSummary.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
InputSummary.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
InputSummary.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
InputSummary.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
-
-