Interface GeneratorDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GeneratorDetails.Builder,GeneratorDetails>,SdkBuilder<GeneratorDetails.Builder,GeneratorDetails>,SdkPojo
- Enclosing class:
- GeneratorDetails
public static interface GeneratorDetails.Builder extends SdkPojo, CopyableBuilder<GeneratorDetails.Builder,GeneratorDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeneratorDetails.Builderdescription(String description)The description of the detector used to identify the code vulnerability.GeneratorDetails.Builderlabels(String... labels)An array of tags used to identify the detector associated with the finding.GeneratorDetails.Builderlabels(Collection<String> labels)An array of tags used to identify the detector associated with the finding.GeneratorDetails.Buildername(String name)The name of the detector used to identify the code vulnerability.-
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
-
name
GeneratorDetails.Builder name(String name)
The name of the detector used to identify the code vulnerability.
- Parameters:
name- The name of the detector used to identify the code vulnerability.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GeneratorDetails.Builder description(String description)
The description of the detector used to identify the code vulnerability.
- Parameters:
description- The description of the detector used to identify the code vulnerability.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labels
GeneratorDetails.Builder labels(Collection<String> labels)
An array of tags used to identify the detector associated with the finding.
Array Members: Minimum number of 0 items. Maximum number of 10 items.
- Parameters:
labels- An array of tags used to identify the detector associated with the finding.Array Members: Minimum number of 0 items. Maximum number of 10 items.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labels
GeneratorDetails.Builder labels(String... labels)
An array of tags used to identify the detector associated with the finding.
Array Members: Minimum number of 0 items. Maximum number of 10 items.
- Parameters:
labels- An array of tags used to identify the detector associated with the finding.Array Members: Minimum number of 0 items. Maximum number of 10 items.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-