Interface EnvironmentLifecycle.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentLifecycle.Builder,EnvironmentLifecycle>,SdkBuilder<EnvironmentLifecycle.Builder,EnvironmentLifecycle>,SdkPojo
- Enclosing class:
- EnvironmentLifecycle
public static interface EnvironmentLifecycle.Builder extends SdkPojo, CopyableBuilder<EnvironmentLifecycle.Builder,EnvironmentLifecycle>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentLifecycle.BuilderfailureResource(String failureResource)If the environment failed to delete, the Amazon Resource Name (ARN) of the related Amazon Web Services resource.EnvironmentLifecycle.Builderreason(String reason)Any informational message about the lifecycle state of the environment.EnvironmentLifecycle.Builderstatus(String status)The current creation or deletion lifecycle state of the environment.EnvironmentLifecycle.Builderstatus(EnvironmentLifecycleStatus status)The current creation or deletion lifecycle state of the environment.-
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
-
status
EnvironmentLifecycle.Builder status(String status)
The current creation or deletion lifecycle state of the environment.
-
CREATING: The environment is in the process of being created. -
CREATED: The environment was successfully created. -
CREATE_FAILED: The environment failed to be created. -
DELETING: The environment is in the process of being deleted. -
DELETE_FAILED: The environment failed to delete.
- Parameters:
status- The current creation or deletion lifecycle state of the environment.-
CREATING: The environment is in the process of being created. -
CREATED: The environment was successfully created. -
CREATE_FAILED: The environment failed to be created. -
DELETING: The environment is in the process of being deleted. -
DELETE_FAILED: The environment failed to delete.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnvironmentLifecycleStatus,EnvironmentLifecycleStatus
-
-
status
EnvironmentLifecycle.Builder status(EnvironmentLifecycleStatus status)
The current creation or deletion lifecycle state of the environment.
-
CREATING: The environment is in the process of being created. -
CREATED: The environment was successfully created. -
CREATE_FAILED: The environment failed to be created. -
DELETING: The environment is in the process of being deleted. -
DELETE_FAILED: The environment failed to delete.
- Parameters:
status- The current creation or deletion lifecycle state of the environment.-
CREATING: The environment is in the process of being created. -
CREATED: The environment was successfully created. -
CREATE_FAILED: The environment failed to be created. -
DELETING: The environment is in the process of being deleted. -
DELETE_FAILED: The environment failed to delete.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EnvironmentLifecycleStatus,EnvironmentLifecycleStatus
-
-
reason
EnvironmentLifecycle.Builder reason(String reason)
Any informational message about the lifecycle state of the environment.
- Parameters:
reason- Any informational message about the lifecycle state of the environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureResource
EnvironmentLifecycle.Builder failureResource(String failureResource)
If the environment failed to delete, the Amazon Resource Name (ARN) of the related Amazon Web Services resource.
- Parameters:
failureResource- If the environment failed to delete, the Amazon Resource Name (ARN) of the related Amazon Web Services resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-