Interface CreateAssessmentTemplateRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateAssessmentTemplateRequest.Builder,CreateAssessmentTemplateRequest>,InspectorRequest.Builder,SdkBuilder<CreateAssessmentTemplateRequest.Builder,CreateAssessmentTemplateRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateAssessmentTemplateRequest
public static interface CreateAssessmentTemplateRequest.Builder extends InspectorRequest.Builder, SdkPojo, CopyableBuilder<CreateAssessmentTemplateRequest.Builder,CreateAssessmentTemplateRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateAssessmentTemplateRequest.BuilderassessmentTargetArn(String assessmentTargetArn)The ARN that specifies the assessment target for which you want to create the assessment template.CreateAssessmentTemplateRequest.BuilderassessmentTemplateName(String assessmentTemplateName)The user-defined name that identifies the assessment template that you want to create.CreateAssessmentTemplateRequest.BuilderdurationInSeconds(Integer durationInSeconds)The duration of the assessment run in seconds.CreateAssessmentTemplateRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateAssessmentTemplateRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateAssessmentTemplateRequest.BuilderrulesPackageArns(String... rulesPackageArns)The ARNs that specify the rules packages that you want to attach to the assessment template.CreateAssessmentTemplateRequest.BuilderrulesPackageArns(Collection<String> rulesPackageArns)The ARNs that specify the rules packages that you want to attach to the assessment template.CreateAssessmentTemplateRequest.BuilderuserAttributesForFindings(Collection<Attribute> userAttributesForFindings)The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template.CreateAssessmentTemplateRequest.BuilderuserAttributesForFindings(Consumer<Attribute.Builder>... userAttributesForFindings)The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template.CreateAssessmentTemplateRequest.BuilderuserAttributesForFindings(Attribute... userAttributesForFindings)The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template.-
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
-
assessmentTargetArn
CreateAssessmentTemplateRequest.Builder assessmentTargetArn(String assessmentTargetArn)
The ARN that specifies the assessment target for which you want to create the assessment template.
- Parameters:
assessmentTargetArn- The ARN that specifies the assessment target for which you want to create the assessment template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assessmentTemplateName
CreateAssessmentTemplateRequest.Builder assessmentTemplateName(String assessmentTemplateName)
The user-defined name that identifies the assessment template that you want to create. You can create several assessment templates for an assessment target. The names of the assessment templates that correspond to a particular assessment target must be unique.
- Parameters:
assessmentTemplateName- The user-defined name that identifies the assessment template that you want to create. You can create several assessment templates for an assessment target. The names of the assessment templates that correspond to a particular assessment target must be unique.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
durationInSeconds
CreateAssessmentTemplateRequest.Builder durationInSeconds(Integer durationInSeconds)
The duration of the assessment run in seconds.
- Parameters:
durationInSeconds- The duration of the assessment run in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rulesPackageArns
CreateAssessmentTemplateRequest.Builder rulesPackageArns(Collection<String> rulesPackageArns)
The ARNs that specify the rules packages that you want to attach to the assessment template.
- Parameters:
rulesPackageArns- The ARNs that specify the rules packages that you want to attach to the assessment template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rulesPackageArns
CreateAssessmentTemplateRequest.Builder rulesPackageArns(String... rulesPackageArns)
The ARNs that specify the rules packages that you want to attach to the assessment template.
- Parameters:
rulesPackageArns- The ARNs that specify the rules packages that you want to attach to the assessment template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userAttributesForFindings
CreateAssessmentTemplateRequest.Builder userAttributesForFindings(Collection<Attribute> userAttributesForFindings)
The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template. An attribute is a key and value pair (an Attribute object). Within an assessment template, each key must be unique.
- Parameters:
userAttributesForFindings- The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template. An attribute is a key and value pair (an Attribute object). Within an assessment template, each key must be unique.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userAttributesForFindings
CreateAssessmentTemplateRequest.Builder userAttributesForFindings(Attribute... userAttributesForFindings)
The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template. An attribute is a key and value pair (an Attribute object). Within an assessment template, each key must be unique.
- Parameters:
userAttributesForFindings- The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template. An attribute is a key and value pair (an Attribute object). Within an assessment template, each key must be unique.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userAttributesForFindings
CreateAssessmentTemplateRequest.Builder userAttributesForFindings(Consumer<Attribute.Builder>... userAttributesForFindings)
The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template. An attribute is a key and value pair (an Attribute object). Within an assessment template, each key must be unique.
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#userAttributesForFindings(List.) - Parameters:
userAttributesForFindings- 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:
#userAttributesForFindings(java.util.Collection)
-
overrideConfiguration
CreateAssessmentTemplateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateAssessmentTemplateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-