Interface ResourceConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResourceConfiguration.Builder,ResourceConfiguration>,SdkBuilder<ResourceConfiguration.Builder,ResourceConfiguration>,SdkPojo
- Enclosing class:
- ResourceConfiguration
public static interface ResourceConfiguration.Builder extends SdkPojo, CopyableBuilder<ResourceConfiguration.Builder,ResourceConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceConfiguration.BuildercomputeType(String computeType)The type of the compute resource used to execute thecontainerAction.ResourceConfiguration.BuildercomputeType(ComputeType computeType)The type of the compute resource used to execute thecontainerAction.ResourceConfiguration.BuildervolumeSizeInGB(Integer volumeSizeInGB)The size, in GB, of the persistent storage available to the resource instance used to execute thecontainerAction(min: 1, max: 50).-
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
-
computeType
ResourceConfiguration.Builder computeType(String computeType)
The type of the compute resource used to execute the
containerAction. Possible values are:ACU_1(vCPU=4, memory=16 GiB) orACU_2(vCPU=8, memory=32 GiB).- Parameters:
computeType- The type of the compute resource used to execute thecontainerAction. Possible values are:ACU_1(vCPU=4, memory=16 GiB) orACU_2(vCPU=8, memory=32 GiB).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComputeType,ComputeType
-
computeType
ResourceConfiguration.Builder computeType(ComputeType computeType)
The type of the compute resource used to execute the
containerAction. Possible values are:ACU_1(vCPU=4, memory=16 GiB) orACU_2(vCPU=8, memory=32 GiB).- Parameters:
computeType- The type of the compute resource used to execute thecontainerAction. Possible values are:ACU_1(vCPU=4, memory=16 GiB) orACU_2(vCPU=8, memory=32 GiB).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComputeType,ComputeType
-
volumeSizeInGB
ResourceConfiguration.Builder volumeSizeInGB(Integer volumeSizeInGB)
The size, in GB, of the persistent storage available to the resource instance used to execute the
containerAction(min: 1, max: 50).- Parameters:
volumeSizeInGB- The size, in GB, of the persistent storage available to the resource instance used to execute thecontainerAction(min: 1, max: 50).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-