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