Interface Indicator.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Indicator.Builder,Indicator>,SdkBuilder<Indicator.Builder,Indicator>,SdkPojo
- Enclosing class:
- Indicator
public static interface Indicator.Builder extends SdkPojo, CopyableBuilder<Indicator.Builder,Indicator>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Indicator.BuilderindicatorDetail(Consumer<IndicatorDetail.Builder> indicatorDetail)Details about the indicators of compromise that are used to determine if a resource is involved in a security incident.Indicator.BuilderindicatorDetail(IndicatorDetail indicatorDetail)Details about the indicators of compromise that are used to determine if a resource is involved in a security incident.Indicator.BuilderindicatorType(String indicatorType)The type of indicator.Indicator.BuilderindicatorType(IndicatorType indicatorType)The type of indicator.-
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
-
indicatorType
Indicator.Builder indicatorType(String indicatorType)
The type of indicator.
- Parameters:
indicatorType- The type of indicator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IndicatorType,IndicatorType
-
indicatorType
Indicator.Builder indicatorType(IndicatorType indicatorType)
The type of indicator.
- Parameters:
indicatorType- The type of indicator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IndicatorType,IndicatorType
-
indicatorDetail
Indicator.Builder indicatorDetail(IndicatorDetail indicatorDetail)
Details about the indicators of compromise that are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident.
- Parameters:
indicatorDetail- Details about the indicators of compromise that are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indicatorDetail
default Indicator.Builder indicatorDetail(Consumer<IndicatorDetail.Builder> indicatorDetail)
Details about the indicators of compromise that are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident.
This is a convenience method that creates an instance of theIndicatorDetail.Builderavoiding the need to create one manually viaIndicatorDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toindicatorDetail(IndicatorDetail).- Parameters:
indicatorDetail- a consumer that will call methods onIndicatorDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
indicatorDetail(IndicatorDetail)
-
-