Interface PatchBaselineIdentity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PatchBaselineIdentity.Builder,PatchBaselineIdentity>,SdkBuilder<PatchBaselineIdentity.Builder,PatchBaselineIdentity>,SdkPojo
- Enclosing class:
- PatchBaselineIdentity
public static interface PatchBaselineIdentity.Builder extends SdkPojo, CopyableBuilder<PatchBaselineIdentity.Builder,PatchBaselineIdentity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PatchBaselineIdentity.BuilderbaselineDescription(String baselineDescription)The description of the patch baseline.PatchBaselineIdentity.BuilderbaselineId(String baselineId)The ID of the patch baseline.PatchBaselineIdentity.BuilderbaselineName(String baselineName)The name of the patch baseline.PatchBaselineIdentity.BuilderdefaultBaseline(Boolean defaultBaseline)Indicates whether this is the default baseline.PatchBaselineIdentity.BuilderoperatingSystem(String operatingSystem)Defines the operating system the patch baseline applies to.PatchBaselineIdentity.BuilderoperatingSystem(OperatingSystem operatingSystem)Defines the operating system the patch baseline applies to.-
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
-
baselineId
PatchBaselineIdentity.Builder baselineId(String baselineId)
The ID of the patch baseline.
- Parameters:
baselineId- The ID of the patch baseline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
baselineName
PatchBaselineIdentity.Builder baselineName(String baselineName)
The name of the patch baseline.
- Parameters:
baselineName- The name of the patch baseline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operatingSystem
PatchBaselineIdentity.Builder operatingSystem(String operatingSystem)
Defines the operating system the patch baseline applies to. The default value is
WINDOWS.- Parameters:
operatingSystem- Defines the operating system the patch baseline applies to. The default value isWINDOWS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperatingSystem,OperatingSystem
-
operatingSystem
PatchBaselineIdentity.Builder operatingSystem(OperatingSystem operatingSystem)
Defines the operating system the patch baseline applies to. The default value is
WINDOWS.- Parameters:
operatingSystem- Defines the operating system the patch baseline applies to. The default value isWINDOWS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperatingSystem,OperatingSystem
-
baselineDescription
PatchBaselineIdentity.Builder baselineDescription(String baselineDescription)
The description of the patch baseline.
- Parameters:
baselineDescription- The description of the patch baseline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultBaseline
PatchBaselineIdentity.Builder defaultBaseline(Boolean defaultBaseline)
Indicates whether this is the default baseline. Amazon Web Services Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system.
- Parameters:
defaultBaseline- Indicates whether this is the default baseline. Amazon Web Services Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-