#[non_exhaustive]pub struct ProjectDataDeliveryConfig { /* private fields */ }Expand description
A structure that contains information about where Evidently is to store evaluation events for longer term storage.
Implementations§
source§impl ProjectDataDeliveryConfig
 
impl ProjectDataDeliveryConfig
sourcepub fn s3_destination(&self) -> Option<&S3DestinationConfig>
 
pub fn s3_destination(&self) -> Option<&S3DestinationConfig>
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) -> Option<&CloudWatchLogsDestinationConfig>
 
pub fn cloud_watch_logs(&self) -> Option<&CloudWatchLogsDestinationConfig>
If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.
source§impl ProjectDataDeliveryConfig
 
impl ProjectDataDeliveryConfig
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ProjectDataDeliveryConfig.
Trait Implementations§
source§impl Clone for ProjectDataDeliveryConfig
 
impl Clone for ProjectDataDeliveryConfig
source§fn clone(&self) -> ProjectDataDeliveryConfig
 
fn clone(&self) -> ProjectDataDeliveryConfig
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 Debug for ProjectDataDeliveryConfig
 
impl Debug for ProjectDataDeliveryConfig
source§impl PartialEq<ProjectDataDeliveryConfig> for ProjectDataDeliveryConfig
 
impl PartialEq<ProjectDataDeliveryConfig> for ProjectDataDeliveryConfig
source§fn eq(&self, other: &ProjectDataDeliveryConfig) -> bool
 
fn eq(&self, other: &ProjectDataDeliveryConfig) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.