#[non_exhaustive]pub struct SuppressDataIdentifierBuilder { /* private fields */ }
Expand description
A builder for SuppressDataIdentifier
.
Implementations§
source§impl SuppressDataIdentifierBuilder
impl SuppressDataIdentifierBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
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.
sourcepub fn type(self, input: DataIdentifierType) -> Self
pub fn type(self, input: DataIdentifierType) -> Self
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.
sourcepub fn set_type(self, input: Option<DataIdentifierType>) -> Self
pub fn set_type(self, input: Option<DataIdentifierType>) -> Self
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.
sourcepub fn build(self) -> SuppressDataIdentifier
pub fn build(self) -> SuppressDataIdentifier
Consumes the builder and constructs a SuppressDataIdentifier
.
Trait Implementations§
source§impl Clone for SuppressDataIdentifierBuilder
impl Clone for SuppressDataIdentifierBuilder
source§fn clone(&self) -> SuppressDataIdentifierBuilder
fn clone(&self) -> SuppressDataIdentifierBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for SuppressDataIdentifierBuilder
impl Default for SuppressDataIdentifierBuilder
source§fn default() -> SuppressDataIdentifierBuilder
fn default() -> SuppressDataIdentifierBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SuppressDataIdentifierBuilder> for SuppressDataIdentifierBuilder
impl PartialEq<SuppressDataIdentifierBuilder> for SuppressDataIdentifierBuilder
source§fn eq(&self, other: &SuppressDataIdentifierBuilder) -> bool
fn eq(&self, other: &SuppressDataIdentifierBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.