pub struct Builder { /* private fields */ }
Expand description
A builder for StorageClassAnalysisDataExport
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn output_schema_version(
self,
input: StorageClassAnalysisSchemaVersion
) -> Self
pub fn output_schema_version(
self,
input: StorageClassAnalysisSchemaVersion
) -> Self
The version of the output schema to use when exporting data. Must be V_1
.
sourcepub fn set_output_schema_version(
self,
input: Option<StorageClassAnalysisSchemaVersion>
) -> Self
pub fn set_output_schema_version(
self,
input: Option<StorageClassAnalysisSchemaVersion>
) -> Self
The version of the output schema to use when exporting data. Must be V_1
.
sourcepub fn destination(self, input: AnalyticsExportDestination) -> Self
pub fn destination(self, input: AnalyticsExportDestination) -> Self
The place to store the data for an analysis.
sourcepub fn set_destination(self, input: Option<AnalyticsExportDestination>) -> Self
pub fn set_destination(self, input: Option<AnalyticsExportDestination>) -> Self
The place to store the data for an analysis.
sourcepub fn build(self) -> StorageClassAnalysisDataExport
pub fn build(self) -> StorageClassAnalysisDataExport
Consumes the builder and constructs a StorageClassAnalysisDataExport
.