Interface ControlInsightsMetadataItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ControlInsightsMetadataItem.Builder,ControlInsightsMetadataItem>,SdkBuilder<ControlInsightsMetadataItem.Builder,ControlInsightsMetadataItem>,SdkPojo
- Enclosing class:
- ControlInsightsMetadataItem
public static interface ControlInsightsMetadataItem.Builder extends SdkPojo, CopyableBuilder<ControlInsightsMetadataItem.Builder,ControlInsightsMetadataItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ControlInsightsMetadataItem.BuilderevidenceInsights(Consumer<EvidenceInsights.Builder> evidenceInsights)A breakdown of the compliance check status for the evidence that’s associated with the control.ControlInsightsMetadataItem.BuilderevidenceInsights(EvidenceInsights evidenceInsights)A breakdown of the compliance check status for the evidence that’s associated with the control.ControlInsightsMetadataItem.Builderid(String id)The unique identifier for the control.ControlInsightsMetadataItem.BuilderlastUpdated(Instant lastUpdated)The time when the control insights were last updated.ControlInsightsMetadataItem.Buildername(String name)The name of the control.-
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
ControlInsightsMetadataItem.Builder name(String name)
The name of the control.
- Parameters:
name- The name of the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
ControlInsightsMetadataItem.Builder id(String id)
The unique identifier for the control.
- Parameters:
id- The unique identifier for the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evidenceInsights
ControlInsightsMetadataItem.Builder evidenceInsights(EvidenceInsights evidenceInsights)
A breakdown of the compliance check status for the evidence that’s associated with the control.
- Parameters:
evidenceInsights- A breakdown of the compliance check status for the evidence that’s associated with the control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evidenceInsights
default ControlInsightsMetadataItem.Builder evidenceInsights(Consumer<EvidenceInsights.Builder> evidenceInsights)
A breakdown of the compliance check status for the evidence that’s associated with the control.
This is a convenience method that creates an instance of theEvidenceInsights.Builderavoiding the need to create one manually viaEvidenceInsights.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toevidenceInsights(EvidenceInsights).- Parameters:
evidenceInsights- a consumer that will call methods onEvidenceInsights.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
evidenceInsights(EvidenceInsights)
-
lastUpdated
ControlInsightsMetadataItem.Builder lastUpdated(Instant lastUpdated)
The time when the control insights were last updated.
- Parameters:
lastUpdated- The time when the control insights were last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-