#[non_exhaustive]pub struct ProjectDataDeliveryConfigBuilder { /* private fields */ }
Expand description
A builder for ProjectDataDeliveryConfig
.
Implementations§
source§impl ProjectDataDeliveryConfigBuilder
impl ProjectDataDeliveryConfigBuilder
sourcepub fn s3_destination(self, input: S3DestinationConfig) -> Self
pub fn s3_destination(self, input: S3DestinationConfig) -> Self
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
sourcepub fn set_s3_destination(self, input: Option<S3DestinationConfig>) -> Self
pub fn set_s3_destination(self, input: Option<S3DestinationConfig>) -> Self
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
sourcepub fn cloud_watch_logs(self, input: CloudWatchLogsDestinationConfig) -> Self
pub fn cloud_watch_logs(self, input: CloudWatchLogsDestinationConfig) -> Self
If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.
sourcepub fn set_cloud_watch_logs(
self,
input: Option<CloudWatchLogsDestinationConfig>
) -> Self
pub fn set_cloud_watch_logs( self, input: Option<CloudWatchLogsDestinationConfig> ) -> Self
If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.
sourcepub fn build(self) -> ProjectDataDeliveryConfig
pub fn build(self) -> ProjectDataDeliveryConfig
Consumes the builder and constructs a ProjectDataDeliveryConfig
.
Trait Implementations§
source§impl Clone for ProjectDataDeliveryConfigBuilder
impl Clone for ProjectDataDeliveryConfigBuilder
source§fn clone(&self) -> ProjectDataDeliveryConfigBuilder
fn clone(&self) -> ProjectDataDeliveryConfigBuilder
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 ProjectDataDeliveryConfigBuilder
impl Default for ProjectDataDeliveryConfigBuilder
source§fn default() -> ProjectDataDeliveryConfigBuilder
fn default() -> ProjectDataDeliveryConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ProjectDataDeliveryConfigBuilder> for ProjectDataDeliveryConfigBuilder
impl PartialEq<ProjectDataDeliveryConfigBuilder> for ProjectDataDeliveryConfigBuilder
source§fn eq(&self, other: &ProjectDataDeliveryConfigBuilder) -> bool
fn eq(&self, other: &ProjectDataDeliveryConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ProjectDataDeliveryConfigBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ProjectDataDeliveryConfigBuilder
impl Send for ProjectDataDeliveryConfigBuilder
impl Sync for ProjectDataDeliveryConfigBuilder
impl Unpin for ProjectDataDeliveryConfigBuilder
impl UnwindSafe for ProjectDataDeliveryConfigBuilder
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