Interface UpdateControlRequest.Builder
-
- All Superinterfaces:
AuditManagerRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<UpdateControlRequest.Builder,UpdateControlRequest>,SdkBuilder<UpdateControlRequest.Builder,UpdateControlRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateControlRequest
public static interface UpdateControlRequest.Builder extends AuditManagerRequest.Builder, SdkPojo, CopyableBuilder<UpdateControlRequest.Builder,UpdateControlRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateControlRequest.BuilderactionPlanInstructions(String actionPlanInstructions)The recommended actions to carry out if the control isn't fulfilled.UpdateControlRequest.BuilderactionPlanTitle(String actionPlanTitle)The title of the action plan for remediating the control.UpdateControlRequest.BuildercontrolId(String controlId)The identifier for the control.UpdateControlRequest.BuildercontrolMappingSources(Collection<ControlMappingSource> controlMappingSources)The data mapping sources for the control.UpdateControlRequest.BuildercontrolMappingSources(Consumer<ControlMappingSource.Builder>... controlMappingSources)The data mapping sources for the control.UpdateControlRequest.BuildercontrolMappingSources(ControlMappingSource... controlMappingSources)The data mapping sources for the control.UpdateControlRequest.Builderdescription(String description)The optional description of the control.UpdateControlRequest.Buildername(String name)The name of the updated control.UpdateControlRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateControlRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateControlRequest.BuildertestingInformation(String testingInformation)The steps that you should follow to determine if the control is met.-
Methods inherited from interface software.amazon.awssdk.services.auditmanager.model.AuditManagerRequest.Builder
build
-
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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
controlId
UpdateControlRequest.Builder controlId(String controlId)
The identifier for the control.
- Parameters:
controlId- The identifier for the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateControlRequest.Builder name(String name)
The name of the updated control.
- Parameters:
name- The name of the updated control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateControlRequest.Builder description(String description)
The optional description of the control.
- Parameters:
description- The optional description of the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testingInformation
UpdateControlRequest.Builder testingInformation(String testingInformation)
The steps that you should follow to determine if the control is met.
- Parameters:
testingInformation- The steps that you should follow to determine if the control is met.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionPlanTitle
UpdateControlRequest.Builder actionPlanTitle(String actionPlanTitle)
The title of the action plan for remediating the control.
- Parameters:
actionPlanTitle- The title of the action plan for remediating the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionPlanInstructions
UpdateControlRequest.Builder actionPlanInstructions(String actionPlanInstructions)
The recommended actions to carry out if the control isn't fulfilled.
- Parameters:
actionPlanInstructions- The recommended actions to carry out if the control isn't fulfilled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
controlMappingSources
UpdateControlRequest.Builder controlMappingSources(Collection<ControlMappingSource> controlMappingSources)
The data mapping sources for the control.
- Parameters:
controlMappingSources- The data mapping sources for the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
controlMappingSources
UpdateControlRequest.Builder controlMappingSources(ControlMappingSource... controlMappingSources)
The data mapping sources for the control.
- Parameters:
controlMappingSources- The data mapping sources for the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
controlMappingSources
UpdateControlRequest.Builder controlMappingSources(Consumer<ControlMappingSource.Builder>... controlMappingSources)
The data mapping sources for the control.
This is a convenience method that creates an instance of theControlMappingSource.Builderavoiding the need to create one manually viaControlMappingSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#controlMappingSources(List.) - Parameters:
controlMappingSources- a consumer that will call methods onControlMappingSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#controlMappingSources(java.util.Collection)
-
overrideConfiguration
UpdateControlRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateControlRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-