pub struct UpdateProjectFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateProject
.
Modifies the specified project name, given the project ARN and a new name.
Implementations§
source§impl UpdateProjectFluentBuilder
impl UpdateProjectFluentBuilder
sourcepub fn as_input(&self) -> &UpdateProjectInputBuilder
pub fn as_input(&self) -> &UpdateProjectInputBuilder
Access the UpdateProject as a reference.
sourcepub async fn send(
self
) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
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 async fn customize(
self
) -> Result<CustomizableOperation<UpdateProjectOutput, UpdateProjectError>, SdkError<UpdateProjectError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateProjectOutput, UpdateProjectError>, SdkError<UpdateProjectError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the project whose name to update.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the project whose name to update.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the project whose name to update.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
A string that represents the new name of the project that you are updating.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
A string that represents the new name of the project that you are updating.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
A string that represents the new name of the project that you are updating.
sourcepub fn default_job_timeout_minutes(self, input: i32) -> Self
pub fn default_job_timeout_minutes(self, input: i32) -> Self
The number of minutes a test run in the project executes before it times out.
sourcepub fn set_default_job_timeout_minutes(self, input: Option<i32>) -> Self
pub fn set_default_job_timeout_minutes(self, input: Option<i32>) -> Self
The number of minutes a test run in the project executes before it times out.
sourcepub fn get_default_job_timeout_minutes(&self) -> &Option<i32>
pub fn get_default_job_timeout_minutes(&self) -> &Option<i32>
The number of minutes a test run in the project executes before it times out.
sourcepub fn vpc_config(self, input: VpcConfig) -> Self
pub fn vpc_config(self, input: VpcConfig) -> Self
The VPC security groups and subnets that are attached to a project.
sourcepub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self
pub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self
The VPC security groups and subnets that are attached to a project.
sourcepub fn get_vpc_config(&self) -> &Option<VpcConfig>
pub fn get_vpc_config(&self) -> &Option<VpcConfig>
The VPC security groups and subnets that are attached to a 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