pub struct UpdateProjectFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateProject
.
Updates the description of an existing project.
To create a new project, use CreateProject.
Don't use this operation to update the data storage options of a project. Instead, use UpdateProjectDataDelivery.
Don't use this operation to update the tags of a project. Instead, use TagResource.
Implementations§
source§impl UpdateProjectFluentBuilder
impl UpdateProjectFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateProject, AwsResponseRetryClassifier>, SdkError<UpdateProjectError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateProject, AwsResponseRetryClassifier>, SdkError<UpdateProjectError>>
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<UpdateProjectOutput, SdkError<UpdateProjectError>>
pub async fn send( self ) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError>>
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 to update.
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 to update.
sourcepub fn app_config_resource(self, input: ProjectAppConfigResourceConfig) -> Self
pub fn app_config_resource(self, input: ProjectAppConfigResourceConfig) -> Self
Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to
This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.
sourcepub fn set_app_config_resource(
self,
input: Option<ProjectAppConfigResourceConfig>
) -> Self
pub fn set_app_config_resource( self, input: Option<ProjectAppConfigResourceConfig> ) -> Self
Use this parameter if the project will use client-side evaluation powered by AppConfig. Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. allows you to
This parameter is a structure that contains information about the AppConfig application that will be used for client-side evaluation.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
An optional description of the project.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
An optional description of the project.
Trait Implementations§
source§impl Clone for UpdateProjectFluentBuilder
impl Clone for UpdateProjectFluentBuilder
source§fn clone(&self) -> UpdateProjectFluentBuilder
fn clone(&self) -> UpdateProjectFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more