Interface ConfigurationRecorderStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfigurationRecorderStatus.Builder,ConfigurationRecorderStatus>,SdkBuilder<ConfigurationRecorderStatus.Builder,ConfigurationRecorderStatus>,SdkPojo
- Enclosing class:
- ConfigurationRecorderStatus
public static interface ConfigurationRecorderStatus.Builder extends SdkPojo, CopyableBuilder<ConfigurationRecorderStatus.Builder,ConfigurationRecorderStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurationRecorderStatus.BuilderlastErrorCode(String lastErrorCode)The latest error code from when the recorder last failed.ConfigurationRecorderStatus.BuilderlastErrorMessage(String lastErrorMessage)The latest error message from when the recorder last failed.ConfigurationRecorderStatus.BuilderlastStartTime(Instant lastStartTime)The time the recorder was last started.ConfigurationRecorderStatus.BuilderlastStatus(String lastStatus)The status of the latest recording event processed by the recorder.ConfigurationRecorderStatus.BuilderlastStatus(RecorderStatus lastStatus)The status of the latest recording event processed by the recorder.ConfigurationRecorderStatus.BuilderlastStatusChangeTime(Instant lastStatusChangeTime)The time of the latest change in status of an recording event processed by the recorder.ConfigurationRecorderStatus.BuilderlastStopTime(Instant lastStopTime)The time the recorder was last stopped.ConfigurationRecorderStatus.Buildername(String name)The name of the configuration recorder.ConfigurationRecorderStatus.Builderrecording(Boolean recording)Specifies whether or not the recorder is currently recording.-
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
-
name
ConfigurationRecorderStatus.Builder name(String name)
The name of the configuration recorder.
- Parameters:
name- The name of the configuration recorder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStartTime
ConfigurationRecorderStatus.Builder lastStartTime(Instant lastStartTime)
The time the recorder was last started.
- Parameters:
lastStartTime- The time the recorder was last started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStopTime
ConfigurationRecorderStatus.Builder lastStopTime(Instant lastStopTime)
The time the recorder was last stopped.
- Parameters:
lastStopTime- The time the recorder was last stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recording
ConfigurationRecorderStatus.Builder recording(Boolean recording)
Specifies whether or not the recorder is currently recording.
- Parameters:
recording- Specifies whether or not the recorder is currently recording.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStatus
ConfigurationRecorderStatus.Builder lastStatus(String lastStatus)
The status of the latest recording event processed by the recorder.
- Parameters:
lastStatus- The status of the latest recording event processed by the recorder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecorderStatus,RecorderStatus
-
lastStatus
ConfigurationRecorderStatus.Builder lastStatus(RecorderStatus lastStatus)
The status of the latest recording event processed by the recorder.
- Parameters:
lastStatus- The status of the latest recording event processed by the recorder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RecorderStatus,RecorderStatus
-
lastErrorCode
ConfigurationRecorderStatus.Builder lastErrorCode(String lastErrorCode)
The latest error code from when the recorder last failed.
- Parameters:
lastErrorCode- The latest error code from when the recorder last failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastErrorMessage
ConfigurationRecorderStatus.Builder lastErrorMessage(String lastErrorMessage)
The latest error message from when the recorder last failed.
- Parameters:
lastErrorMessage- The latest error message from when the recorder last failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStatusChangeTime
ConfigurationRecorderStatus.Builder lastStatusChangeTime(Instant lastStatusChangeTime)
The time of the latest change in status of an recording event processed by the recorder.
- Parameters:
lastStatusChangeTime- The time of the latest change in status of an recording event processed by the recorder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-