pub struct CreateProjectFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateProject
.
Creates a project.
Implementations§
source§impl CreateProjectFluentBuilder
impl CreateProjectFluentBuilder
sourcepub fn as_input(&self) -> &CreateProjectInputBuilder
pub fn as_input(&self) -> &CreateProjectInputBuilder
Access the CreateProject as a reference.
sourcepub async fn send(
self
) -> Result<CreateProjectOutput, SdkError<CreateProjectError, HttpResponse>>
pub async fn send( self ) -> Result<CreateProjectOutput, SdkError<CreateProjectError, 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<CreateProjectOutput, CreateProjectError>, SdkError<CreateProjectError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateProjectOutput, CreateProjectError>, SdkError<CreateProjectError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn default_job_timeout_minutes(self, input: i32) -> Self
pub fn default_job_timeout_minutes(self, input: i32) -> Self
Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.
sourcepub fn set_default_job_timeout_minutes(self, input: Option<i32>) -> Self
pub fn set_default_job_timeout_minutes(self, input: Option<i32>) -> Self
Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.
sourcepub fn get_default_job_timeout_minutes(&self) -> &Option<i32>
pub fn get_default_job_timeout_minutes(&self) -> &Option<i32>
Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.
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 CreateProjectFluentBuilder
impl Clone for CreateProjectFluentBuilder
source§fn clone(&self) -> CreateProjectFluentBuilder
fn clone(&self) -> CreateProjectFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more