Interface SuppressDataIdentifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SuppressDataIdentifier.Builder,SuppressDataIdentifier>,SdkBuilder<SuppressDataIdentifier.Builder,SuppressDataIdentifier>,SdkPojo
- Enclosing class:
- SuppressDataIdentifier
public static interface SuppressDataIdentifier.Builder extends SdkPojo, CopyableBuilder<SuppressDataIdentifier.Builder,SuppressDataIdentifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SuppressDataIdentifier.Builderid(String id)The unique identifier for the custom data identifier or managed data identifier that detected the type of sensitive data to exclude or include in the score.SuppressDataIdentifier.Buildertype(String type)The type of data identifier that detected the sensitive data.SuppressDataIdentifier.Buildertype(DataIdentifierType type)The type of data identifier that detected the sensitive data.-
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
-
id
SuppressDataIdentifier.Builder id(String id)
The unique identifier for the custom data identifier or managed data identifier that detected the type of sensitive data to exclude or include in the score.
- Parameters:
id- The unique identifier for the custom data identifier or managed data identifier that detected the type of sensitive data to exclude or include in the score.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
SuppressDataIdentifier.Builder type(String type)
The type of data identifier that detected the sensitive data. Possible values are: CUSTOM, for a custom data identifier; and, MANAGED, for a managed data identifier.
- Parameters:
type- The type of data identifier that detected the sensitive data. Possible values are: CUSTOM, for a custom data identifier; and, MANAGED, for a managed data identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataIdentifierType,DataIdentifierType
-
type
SuppressDataIdentifier.Builder type(DataIdentifierType type)
The type of data identifier that detected the sensitive data. Possible values are: CUSTOM, for a custom data identifier; and, MANAGED, for a managed data identifier.
- Parameters:
type- The type of data identifier that detected the sensitive data. Possible values are: CUSTOM, for a custom data identifier; and, MANAGED, for a managed data identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataIdentifierType,DataIdentifierType
-
-