#[non_exhaustive]pub struct UpdateProjectInputBuilder { /* private fields */ }
Expand description
A builder for UpdateProjectInput
.
Implementations§
source§impl UpdateProjectInputBuilder
impl UpdateProjectInputBuilder
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.
sourcepub fn build(self) -> Result<UpdateProjectInput, BuildError>
pub fn build(self) -> Result<UpdateProjectInput, BuildError>
Consumes the builder and constructs a UpdateProjectInput
.
source§impl UpdateProjectInputBuilder
impl UpdateProjectInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateProjectInputBuilder
impl Clone for UpdateProjectInputBuilder
source§fn clone(&self) -> UpdateProjectInputBuilder
fn clone(&self) -> UpdateProjectInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateProjectInputBuilder
impl Debug for UpdateProjectInputBuilder
source§impl Default for UpdateProjectInputBuilder
impl Default for UpdateProjectInputBuilder
source§fn default() -> UpdateProjectInputBuilder
fn default() -> UpdateProjectInputBuilder
source§impl PartialEq<UpdateProjectInputBuilder> for UpdateProjectInputBuilder
impl PartialEq<UpdateProjectInputBuilder> for UpdateProjectInputBuilder
source§fn eq(&self, other: &UpdateProjectInputBuilder) -> bool
fn eq(&self, other: &UpdateProjectInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.