Interface Domain.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Domain.Builder,Domain>,SdkBuilder<Domain.Builder,Domain>,SdkPojo
- Enclosing class:
- Domain
public static interface Domain.Builder extends SdkPojo, CopyableBuilder<Domain.Builder,Domain>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Domain.Builderlifecycle(String lifecycle)The type of lifecycle management for apps in the domain.Domain.Builderlifecycle(LifecycleManagementStrategy lifecycle)The type of lifecycle management for apps in the domain.Domain.Buildername(String name)The name of the domain.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
lifecycle
Domain.Builder lifecycle(String lifecycle)
The type of lifecycle management for apps in the domain. Indicates whether apps in this domain are managed (SimSpace Weaver starts and stops the apps) or unmanaged (you must start and stop the apps).
Lifecycle types
-
PerWorker– Managed: SimSpace Weaver starts one app on each worker. -
BySpatialSubdivision– Managed: SimSpace Weaver starts one app for each spatial partition. -
ByRequest– Unmanaged: You use theStartAppAPI to start the apps and use theStopAppAPI to stop the apps.
- Parameters:
lifecycle- The type of lifecycle management for apps in the domain. Indicates whether apps in this domain are managed (SimSpace Weaver starts and stops the apps) or unmanaged (you must start and stop the apps).Lifecycle types
-
PerWorker– Managed: SimSpace Weaver starts one app on each worker. -
BySpatialSubdivision– Managed: SimSpace Weaver starts one app for each spatial partition. -
ByRequest– Unmanaged: You use theStartAppAPI to start the apps and use theStopAppAPI to stop the apps.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LifecycleManagementStrategy,LifecycleManagementStrategy
-
-
lifecycle
Domain.Builder lifecycle(LifecycleManagementStrategy lifecycle)
The type of lifecycle management for apps in the domain. Indicates whether apps in this domain are managed (SimSpace Weaver starts and stops the apps) or unmanaged (you must start and stop the apps).
Lifecycle types
-
PerWorker– Managed: SimSpace Weaver starts one app on each worker. -
BySpatialSubdivision– Managed: SimSpace Weaver starts one app for each spatial partition. -
ByRequest– Unmanaged: You use theStartAppAPI to start the apps and use theStopAppAPI to stop the apps.
- Parameters:
lifecycle- The type of lifecycle management for apps in the domain. Indicates whether apps in this domain are managed (SimSpace Weaver starts and stops the apps) or unmanaged (you must start and stop the apps).Lifecycle types
-
PerWorker– Managed: SimSpace Weaver starts one app on each worker. -
BySpatialSubdivision– Managed: SimSpace Weaver starts one app for each spatial partition. -
ByRequest– Unmanaged: You use theStartAppAPI to start the apps and use theStopAppAPI to stop the apps.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LifecycleManagementStrategy,LifecycleManagementStrategy
-
-
name
Domain.Builder name(String name)
The name of the domain.
- Parameters:
name- The name of the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-