pub struct Builder { /* private fields */ }
Expand description
A builder for DataClassificationDetails
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn detailed_results_location(self, input: impl Into<String>) -> Self
pub fn detailed_results_location(self, input: impl Into<String>) -> Self
The path to the folder or file that contains the sensitive data.
sourcepub fn set_detailed_results_location(self, input: Option<String>) -> Self
pub fn set_detailed_results_location(self, input: Option<String>) -> Self
The path to the folder or file that contains the sensitive data.
sourcepub fn result(self, input: ClassificationResult) -> Self
pub fn result(self, input: ClassificationResult) -> Self
The details about the sensitive data that was detected on the resource.
sourcepub fn set_result(self, input: Option<ClassificationResult>) -> Self
pub fn set_result(self, input: Option<ClassificationResult>) -> Self
The details about the sensitive data that was detected on the resource.
sourcepub fn build(self) -> DataClassificationDetails
pub fn build(self) -> DataClassificationDetails
Consumes the builder and constructs a DataClassificationDetails
.