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