Interface ConfigStreamDeliveryInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfigStreamDeliveryInfo.Builder,ConfigStreamDeliveryInfo>,SdkBuilder<ConfigStreamDeliveryInfo.Builder,ConfigStreamDeliveryInfo>,SdkPojo
- Enclosing class:
- ConfigStreamDeliveryInfo
public static interface ConfigStreamDeliveryInfo.Builder extends SdkPojo, CopyableBuilder<ConfigStreamDeliveryInfo.Builder,ConfigStreamDeliveryInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigStreamDeliveryInfo.BuilderlastErrorCode(String lastErrorCode)The error code from the last attempted delivery.ConfigStreamDeliveryInfo.BuilderlastErrorMessage(String lastErrorMessage)The error message from the last attempted delivery.ConfigStreamDeliveryInfo.BuilderlastStatus(String lastStatus)Status of the last attempted delivery.ConfigStreamDeliveryInfo.BuilderlastStatus(DeliveryStatus lastStatus)Status of the last attempted delivery.ConfigStreamDeliveryInfo.BuilderlastStatusChangeTime(Instant lastStatusChangeTime)The time from the last status change.-
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
-
lastStatus
ConfigStreamDeliveryInfo.Builder lastStatus(String lastStatus)
Status of the last attempted delivery.
Note Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.
- Parameters:
lastStatus- Status of the last attempted delivery.Note Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeliveryStatus,DeliveryStatus
-
lastStatus
ConfigStreamDeliveryInfo.Builder lastStatus(DeliveryStatus lastStatus)
Status of the last attempted delivery.
Note Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.
- Parameters:
lastStatus- Status of the last attempted delivery.Note Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeliveryStatus,DeliveryStatus
-
lastErrorCode
ConfigStreamDeliveryInfo.Builder lastErrorCode(String lastErrorCode)
The error code from the last attempted delivery.
- Parameters:
lastErrorCode- The error code from the last attempted delivery.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastErrorMessage
ConfigStreamDeliveryInfo.Builder lastErrorMessage(String lastErrorMessage)
The error message from the last attempted delivery.
- Parameters:
lastErrorMessage- The error message from the last attempted delivery.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStatusChangeTime
ConfigStreamDeliveryInfo.Builder lastStatusChangeTime(Instant lastStatusChangeTime)
The time from the last status change.
- Parameters:
lastStatusChangeTime- The time from the last status change.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-