#[non_exhaustive]pub struct CreateExperimentTemplateLogConfigurationInputBuilder { /* private fields */ }
Expand description
A builder for CreateExperimentTemplateLogConfigurationInput
.
Implementations§
source§impl CreateExperimentTemplateLogConfigurationInputBuilder
impl CreateExperimentTemplateLogConfigurationInputBuilder
sourcepub fn cloud_watch_logs_configuration(
self,
input: ExperimentTemplateCloudWatchLogsLogConfigurationInput
) -> Self
pub fn cloud_watch_logs_configuration( self, input: ExperimentTemplateCloudWatchLogsLogConfigurationInput ) -> Self
The configuration for experiment logging to Amazon CloudWatch Logs.
sourcepub fn set_cloud_watch_logs_configuration(
self,
input: Option<ExperimentTemplateCloudWatchLogsLogConfigurationInput>
) -> Self
pub fn set_cloud_watch_logs_configuration( self, input: Option<ExperimentTemplateCloudWatchLogsLogConfigurationInput> ) -> Self
The configuration for experiment logging to Amazon CloudWatch Logs.
sourcepub fn get_cloud_watch_logs_configuration(
&self
) -> &Option<ExperimentTemplateCloudWatchLogsLogConfigurationInput>
pub fn get_cloud_watch_logs_configuration( &self ) -> &Option<ExperimentTemplateCloudWatchLogsLogConfigurationInput>
The configuration for experiment logging to Amazon CloudWatch Logs.
sourcepub fn s3_configuration(
self,
input: ExperimentTemplateS3LogConfigurationInput
) -> Self
pub fn s3_configuration( self, input: ExperimentTemplateS3LogConfigurationInput ) -> Self
The configuration for experiment logging to Amazon S3.
sourcepub fn set_s3_configuration(
self,
input: Option<ExperimentTemplateS3LogConfigurationInput>
) -> Self
pub fn set_s3_configuration( self, input: Option<ExperimentTemplateS3LogConfigurationInput> ) -> Self
The configuration for experiment logging to Amazon S3.
sourcepub fn get_s3_configuration(
&self
) -> &Option<ExperimentTemplateS3LogConfigurationInput>
pub fn get_s3_configuration( &self ) -> &Option<ExperimentTemplateS3LogConfigurationInput>
The configuration for experiment logging to Amazon S3.
sourcepub fn log_schema_version(self, input: i32) -> Self
pub fn log_schema_version(self, input: i32) -> Self
The schema version.
sourcepub fn set_log_schema_version(self, input: Option<i32>) -> Self
pub fn set_log_schema_version(self, input: Option<i32>) -> Self
The schema version.
sourcepub fn get_log_schema_version(&self) -> &Option<i32>
pub fn get_log_schema_version(&self) -> &Option<i32>
The schema version.
sourcepub fn build(self) -> CreateExperimentTemplateLogConfigurationInput
pub fn build(self) -> CreateExperimentTemplateLogConfigurationInput
Consumes the builder and constructs a CreateExperimentTemplateLogConfigurationInput
.
Trait Implementations§
source§impl Clone for CreateExperimentTemplateLogConfigurationInputBuilder
impl Clone for CreateExperimentTemplateLogConfigurationInputBuilder
source§fn clone(&self) -> CreateExperimentTemplateLogConfigurationInputBuilder
fn clone(&self) -> CreateExperimentTemplateLogConfigurationInputBuilder
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 CreateExperimentTemplateLogConfigurationInputBuilder
impl Default for CreateExperimentTemplateLogConfigurationInputBuilder
source§fn default() -> CreateExperimentTemplateLogConfigurationInputBuilder
fn default() -> CreateExperimentTemplateLogConfigurationInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CreateExperimentTemplateLogConfigurationInputBuilder> for CreateExperimentTemplateLogConfigurationInputBuilder
impl PartialEq<CreateExperimentTemplateLogConfigurationInputBuilder> for CreateExperimentTemplateLogConfigurationInputBuilder
source§fn eq(
&self,
other: &CreateExperimentTemplateLogConfigurationInputBuilder
) -> bool
fn eq( &self, other: &CreateExperimentTemplateLogConfigurationInputBuilder ) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateExperimentTemplateLogConfigurationInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CreateExperimentTemplateLogConfigurationInputBuilder
impl Send for CreateExperimentTemplateLogConfigurationInputBuilder
impl Sync for CreateExperimentTemplateLogConfigurationInputBuilder
impl Unpin for CreateExperimentTemplateLogConfigurationInputBuilder
impl UnwindSafe for CreateExperimentTemplateLogConfigurationInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more