pub struct UpdateProjectDataDelivery { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateProjectDataDelivery.
Updates the data storage options for this project. If you store evaluation events, you an keep them and analyze them on your own. If you choose not to store evaluation events, Evidently deletes them after using them to produce metrics and other experiment results that you can view.
You can't specify both cloudWatchLogs and s3Destination in the same operation.
Implementations§
source§impl UpdateProjectDataDelivery
impl UpdateProjectDataDelivery
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateProjectDataDelivery, AwsResponseRetryClassifier>, SdkError<UpdateProjectDataDeliveryError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateProjectDataDelivery, AwsResponseRetryClassifier>, SdkError<UpdateProjectDataDeliveryError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateProjectDataDeliveryOutput, SdkError<UpdateProjectDataDeliveryError>>
pub async fn send(
self
) -> Result<UpdateProjectDataDeliveryOutput, SdkError<UpdateProjectDataDeliveryError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn project(self, input: impl Into<String>) -> Self
pub fn project(self, input: impl Into<String>) -> Self
The name or ARN of the project that you want to modify the data storage options for.
sourcepub fn set_project(self, input: Option<String>) -> Self
pub fn set_project(self, input: Option<String>) -> Self
The name or ARN of the project that you want to modify the data storage options for.
sourcepub fn s3_destination(self, input: S3DestinationConfig) -> Self
pub fn s3_destination(self, input: S3DestinationConfig) -> Self
A structure containing the S3 bucket name and bucket prefix where you want to store evaluation events.
sourcepub fn set_s3_destination(self, input: Option<S3DestinationConfig>) -> Self
pub fn set_s3_destination(self, input: Option<S3DestinationConfig>) -> Self
A structure containing the S3 bucket name and bucket prefix where you want to store evaluation events.
sourcepub fn cloud_watch_logs(self, input: CloudWatchLogsDestinationConfig) -> Self
pub fn cloud_watch_logs(self, input: CloudWatchLogsDestinationConfig) -> Self
A structure containing the CloudWatch Logs log group where you want to store evaluation events.
sourcepub fn set_cloud_watch_logs(
self,
input: Option<CloudWatchLogsDestinationConfig>
) -> Self
pub fn set_cloud_watch_logs(
self,
input: Option<CloudWatchLogsDestinationConfig>
) -> Self
A structure containing the CloudWatch Logs log group where you want to store evaluation events.
Trait Implementations§
source§impl Clone for UpdateProjectDataDelivery
impl Clone for UpdateProjectDataDelivery
source§fn clone(&self) -> UpdateProjectDataDelivery
fn clone(&self) -> UpdateProjectDataDelivery
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more