Interface AddAttributesToFindingsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AddAttributesToFindingsRequest.Builder,AddAttributesToFindingsRequest>,InspectorRequest.Builder,SdkBuilder<AddAttributesToFindingsRequest.Builder,AddAttributesToFindingsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AddAttributesToFindingsRequest
public static interface AddAttributesToFindingsRequest.Builder extends InspectorRequest.Builder, SdkPojo, CopyableBuilder<AddAttributesToFindingsRequest.Builder,AddAttributesToFindingsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddAttributesToFindingsRequest.Builderattributes(Collection<Attribute> attributes)The array of attributes that you want to assign to specified findings.AddAttributesToFindingsRequest.Builderattributes(Consumer<Attribute.Builder>... attributes)The array of attributes that you want to assign to specified findings.AddAttributesToFindingsRequest.Builderattributes(Attribute... attributes)The array of attributes that you want to assign to specified findings.AddAttributesToFindingsRequest.BuilderfindingArns(String... findingArns)The ARNs that specify the findings that you want to assign attributes to.AddAttributesToFindingsRequest.BuilderfindingArns(Collection<String> findingArns)The ARNs that specify the findings that you want to assign attributes to.AddAttributesToFindingsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AddAttributesToFindingsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.inspector.model.InspectorRequest.Builder
build
-
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
-
findingArns
AddAttributesToFindingsRequest.Builder findingArns(Collection<String> findingArns)
The ARNs that specify the findings that you want to assign attributes to.
- Parameters:
findingArns- The ARNs that specify the findings that you want to assign attributes to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
findingArns
AddAttributesToFindingsRequest.Builder findingArns(String... findingArns)
The ARNs that specify the findings that you want to assign attributes to.
- Parameters:
findingArns- The ARNs that specify the findings that you want to assign attributes to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
AddAttributesToFindingsRequest.Builder attributes(Collection<Attribute> attributes)
The array of attributes that you want to assign to specified findings.
- Parameters:
attributes- The array of attributes that you want to assign to specified findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
AddAttributesToFindingsRequest.Builder attributes(Attribute... attributes)
The array of attributes that you want to assign to specified findings.
- Parameters:
attributes- The array of attributes that you want to assign to specified findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributes
AddAttributesToFindingsRequest.Builder attributes(Consumer<Attribute.Builder>... attributes)
The array of attributes that you want to assign to specified findings.
This is a convenience method that creates an instance of theAttribute.Builderavoiding the need to create one manually viaAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#attributes(List.) - Parameters:
attributes- a consumer that will call methods onAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#attributes(java.util.Collection)
-
overrideConfiguration
AddAttributesToFindingsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AddAttributesToFindingsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-