Interface CanaryRunConfigOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CanaryRunConfigOutput.Builder,CanaryRunConfigOutput>,SdkBuilder<CanaryRunConfigOutput.Builder,CanaryRunConfigOutput>,SdkPojo
- Enclosing class:
- CanaryRunConfigOutput
public static interface CanaryRunConfigOutput.Builder extends SdkPojo, CopyableBuilder<CanaryRunConfigOutput.Builder,CanaryRunConfigOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CanaryRunConfigOutput.BuilderactiveTracing(Boolean activeTracing)Displays whether this canary run used active X-Ray tracing.CanaryRunConfigOutput.BuildermemoryInMB(Integer memoryInMB)The maximum amount of memory available to the canary while it is running, in MB.CanaryRunConfigOutput.BuildertimeoutInSeconds(Integer timeoutInSeconds)How long the canary is allowed to run before it must stop.-
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
-
timeoutInSeconds
CanaryRunConfigOutput.Builder timeoutInSeconds(Integer timeoutInSeconds)
How long the canary is allowed to run before it must stop.
- Parameters:
timeoutInSeconds- How long the canary is allowed to run before it must stop.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memoryInMB
CanaryRunConfigOutput.Builder memoryInMB(Integer memoryInMB)
The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64.
- Parameters:
memoryInMB- The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeTracing
CanaryRunConfigOutput.Builder activeTracing(Boolean activeTracing)
Displays whether this canary run used active X-Ray tracing.
- Parameters:
activeTracing- Displays whether this canary run used active X-Ray tracing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-