Class DeploymentStatusDetails
- java.lang.Object
-
- software.amazon.awssdk.aws.greengrass.model.DeploymentStatusDetails
-
- All Implemented Interfaces:
EventStreamJsonMessage
public class DeploymentStatusDetails extends Object implements EventStreamJsonMessage
-
-
Field Summary
Fields Modifier and Type Field Description static String
APPLICATION_MODEL_TYPE
static DeploymentStatusDetails
VOID
-
Constructor Summary
Constructors Constructor Description DeploymentStatusDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object rhs)
String
getApplicationModelType()
Returns the named model type.List<String>
getDeploymentErrorStack()
(Optional) The list of local deployment errorsList<String>
getDeploymentErrorTypes()
(Optional) The list of local deployment error typesString
getDeploymentFailureCause()
(Optional) The cause of local deployment failureDetailedDeploymentStatus
getDetailedDeploymentStatus()
String
getDetailedDeploymentStatusAsString()
The detailed deployment status of the local deployment.int
hashCode()
void
setDeploymentErrorStack(List<String> deploymentErrorStack)
(Optional) The list of local deployment errorsvoid
setDeploymentErrorTypes(List<String> deploymentErrorTypes)
(Optional) The list of local deployment error typesvoid
setDeploymentFailureCause(String deploymentFailureCause)
(Optional) The cause of local deployment failurevoid
setDetailedDeploymentStatus(String detailedDeploymentStatus)
The detailed deployment status of the local deployment.void
setDetailedDeploymentStatus(DetailedDeploymentStatus detailedDeploymentStatus)
The detailed deployment status of the local deployment.DeploymentStatusDetails
withDeploymentErrorStack(List<String> deploymentErrorStack)
(Optional) The list of local deployment errorsDeploymentStatusDetails
withDeploymentErrorTypes(List<String> deploymentErrorTypes)
(Optional) The list of local deployment error typesDeploymentStatusDetails
withDeploymentFailureCause(String deploymentFailureCause)
(Optional) The cause of local deployment failureDeploymentStatusDetails
withDetailedDeploymentStatus(String detailedDeploymentStatus)
The detailed deployment status of the local deployment.DeploymentStatusDetails
withDetailedDeploymentStatus(DetailedDeploymentStatus detailedDeploymentStatus)
The detailed deployment status of the local deployment.-
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.eventstreamrpc.model.EventStreamJsonMessage
fromJson, isVoid, postFromJson, toPayload
-
-
-
-
Field Detail
-
APPLICATION_MODEL_TYPE
public static final String APPLICATION_MODEL_TYPE
- See Also:
- Constant Field Values
-
VOID
public static final DeploymentStatusDetails VOID
-
-
Method Detail
-
getDetailedDeploymentStatus
public DetailedDeploymentStatus getDetailedDeploymentStatus()
-
getDetailedDeploymentStatusAsString
public String getDetailedDeploymentStatusAsString()
The detailed deployment status of the local deployment.
-
setDetailedDeploymentStatus
public void setDetailedDeploymentStatus(String detailedDeploymentStatus)
The detailed deployment status of the local deployment.
-
withDetailedDeploymentStatus
public DeploymentStatusDetails withDetailedDeploymentStatus(String detailedDeploymentStatus)
The detailed deployment status of the local deployment.
-
setDetailedDeploymentStatus
public void setDetailedDeploymentStatus(DetailedDeploymentStatus detailedDeploymentStatus)
The detailed deployment status of the local deployment.
-
withDetailedDeploymentStatus
public DeploymentStatusDetails withDetailedDeploymentStatus(DetailedDeploymentStatus detailedDeploymentStatus)
The detailed deployment status of the local deployment.
-
getDeploymentErrorStack
public List<String> getDeploymentErrorStack()
(Optional) The list of local deployment errors
-
setDeploymentErrorStack
public void setDeploymentErrorStack(List<String> deploymentErrorStack)
(Optional) The list of local deployment errors
-
withDeploymentErrorStack
public DeploymentStatusDetails withDeploymentErrorStack(List<String> deploymentErrorStack)
(Optional) The list of local deployment errors
-
getDeploymentErrorTypes
public List<String> getDeploymentErrorTypes()
(Optional) The list of local deployment error types
-
setDeploymentErrorTypes
public void setDeploymentErrorTypes(List<String> deploymentErrorTypes)
(Optional) The list of local deployment error types
-
withDeploymentErrorTypes
public DeploymentStatusDetails withDeploymentErrorTypes(List<String> deploymentErrorTypes)
(Optional) The list of local deployment error types
-
getDeploymentFailureCause
public String getDeploymentFailureCause()
(Optional) The cause of local deployment failure
-
setDeploymentFailureCause
public void setDeploymentFailureCause(String deploymentFailureCause)
(Optional) The cause of local deployment failure
-
withDeploymentFailureCause
public DeploymentStatusDetails withDeploymentFailureCause(String deploymentFailureCause)
(Optional) The cause of local deployment failure
-
getApplicationModelType
public String getApplicationModelType()
Description copied from interface:EventStreamJsonMessage
Returns the named model type. May be used for a header.- Specified by:
getApplicationModelType
in interfaceEventStreamJsonMessage
- Returns:
- the named model type
-
-