pub struct UpdateProjectFluentBuilder { /* private fields */ }
Expand description

Fluent builder constructing a request to UpdateProject.

Changes the settings of a build project.

Implementations§

source§

impl UpdateProjectFluentBuilder

source

pub fn as_input(&self) -> &UpdateProjectInputBuilder

Access the UpdateProject as a reference.

source

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.

source

pub fn customize( self ) -> CustomizableOperation<UpdateProjectOutput, UpdateProjectError, Self>

Consumes this builder, creating a customizable operation that can be modified before being sent.

source

pub fn name(self, input: impl Into<String>) -> Self

The name of the build project.

You cannot change a build project's name.

source

pub fn set_name(self, input: Option<String>) -> Self

The name of the build project.

You cannot change a build project's name.

source

pub fn get_name(&self) -> &Option<String>

The name of the build project.

You cannot change a build project's name.

source

pub fn description(self, input: impl Into<String>) -> Self

A new or replacement description of the build project.

source

pub fn set_description(self, input: Option<String>) -> Self

A new or replacement description of the build project.

source

pub fn get_description(&self) -> &Option<String>

A new or replacement description of the build project.

source

pub fn source(self, input: ProjectSource) -> Self

Information to be changed about the build input source code for the build project.

source

pub fn set_source(self, input: Option<ProjectSource>) -> Self

Information to be changed about the build input source code for the build project.

source

pub fn get_source(&self) -> &Option<ProjectSource>

Information to be changed about the build input source code for the build project.

source

pub fn secondary_sources(self, input: ProjectSource) -> Self

Appends an item to secondarySources.

To override the contents of this collection use set_secondary_sources.

An array of ProjectSource objects.

source

pub fn set_secondary_sources(self, input: Option<Vec<ProjectSource>>) -> Self

An array of ProjectSource objects.

source

pub fn get_secondary_sources(&self) -> &Option<Vec<ProjectSource>>

An array of ProjectSource objects.

source

pub fn source_version(self, input: impl Into<String>) -> Self

A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

  • For CodeCommit: the commit ID, branch, or Git tag to use.

  • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Amazon S3: the version ID of the object that represents the build input ZIP file to use.

If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.

source

pub fn set_source_version(self, input: Option<String>) -> Self

A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

  • For CodeCommit: the commit ID, branch, or Git tag to use.

  • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Amazon S3: the version ID of the object that represents the build input ZIP file to use.

If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.

source

pub fn get_source_version(&self) -> &Option<String>

A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of:

  • For CodeCommit: the commit ID, branch, or Git tag to use.

  • For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used.

  • For Amazon S3: the version ID of the object that represents the build input ZIP file to use.

If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level).

For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.

source

pub fn secondary_source_versions(self, input: ProjectSourceVersion) -> Self

Appends an item to secondarySourceVersions.

To override the contents of this collection use set_secondary_source_versions.

An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take over these secondarySourceVersions (at the project level).

source

pub fn set_secondary_source_versions( self, input: Option<Vec<ProjectSourceVersion>> ) -> Self

An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take over these secondarySourceVersions (at the project level).

source

pub fn get_secondary_source_versions( &self ) -> &Option<Vec<ProjectSourceVersion>>

An array of ProjectSourceVersion objects. If secondarySourceVersions is specified at the build level, then they take over these secondarySourceVersions (at the project level).

source

pub fn artifacts(self, input: ProjectArtifacts) -> Self

Information to be changed about the build output artifacts for the build project.

source

pub fn set_artifacts(self, input: Option<ProjectArtifacts>) -> Self

Information to be changed about the build output artifacts for the build project.

source

pub fn get_artifacts(&self) -> &Option<ProjectArtifacts>

Information to be changed about the build output artifacts for the build project.

source

pub fn secondary_artifacts(self, input: ProjectArtifacts) -> Self

Appends an item to secondaryArtifacts.

To override the contents of this collection use set_secondary_artifacts.

An array of ProjectArtifact objects.

source

pub fn set_secondary_artifacts( self, input: Option<Vec<ProjectArtifacts>> ) -> Self

An array of ProjectArtifact objects.

source

pub fn get_secondary_artifacts(&self) -> &Option<Vec<ProjectArtifacts>>

An array of ProjectArtifact objects.

source

pub fn cache(self, input: ProjectCache) -> Self

Stores recently used information so that it can be quickly accessed at a later time.

source

pub fn set_cache(self, input: Option<ProjectCache>) -> Self

Stores recently used information so that it can be quickly accessed at a later time.

source

pub fn get_cache(&self) -> &Option<ProjectCache>

Stores recently used information so that it can be quickly accessed at a later time.

source

pub fn environment(self, input: ProjectEnvironment) -> Self

Information to be changed about the build environment for the build project.

source

pub fn set_environment(self, input: Option<ProjectEnvironment>) -> Self

Information to be changed about the build environment for the build project.

source

pub fn get_environment(&self) -> &Option<ProjectEnvironment>

Information to be changed about the build environment for the build project.

source

pub fn service_role(self, input: impl Into<String>) -> Self

The replacement ARN of the IAM role that enables CodeBuild to interact with dependent Amazon Web Services services on behalf of the Amazon Web Services account.

source

pub fn set_service_role(self, input: Option<String>) -> Self

The replacement ARN of the IAM role that enables CodeBuild to interact with dependent Amazon Web Services services on behalf of the Amazon Web Services account.

source

pub fn get_service_role(&self) -> &Option<String>

The replacement ARN of the IAM role that enables CodeBuild to interact with dependent Amazon Web Services services on behalf of the Amazon Web Services account.

source

pub fn timeout_in_minutes(self, input: i32) -> Self

The replacement value in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed.

source

pub fn set_timeout_in_minutes(self, input: Option<i32>) -> Self

The replacement value in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed.

source

pub fn get_timeout_in_minutes(&self) -> &Option<i32>

The replacement value in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out any related build that did not get marked as completed.

source

pub fn queued_timeout_in_minutes(self, input: i32) -> Self

The number of minutes a build is allowed to be queued before it times out.

source

pub fn set_queued_timeout_in_minutes(self, input: Option<i32>) -> Self

The number of minutes a build is allowed to be queued before it times out.

source

pub fn get_queued_timeout_in_minutes(&self) -> &Option<i32>

The number of minutes a build is allowed to be queued before it times out.

source

pub fn encryption_key(self, input: impl Into<String>) -> Self

The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts.

You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/).

source

pub fn set_encryption_key(self, input: Option<String>) -> Self

The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts.

You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/).

source

pub fn get_encryption_key(&self) -> &Option<String>

The Key Management Service customer master key (CMK) to be used for encrypting the build output artifacts.

You can use a cross-account KMS key to encrypt the build output artifacts if your service role has permission to that key.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK's alias (using the format alias/).

source

pub fn tags(self, input: Tag) -> Self

Appends an item to tags.

To override the contents of this collection use set_tags.

An updated list of tag key and value pairs associated with this build project.

These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.

source

pub fn set_tags(self, input: Option<Vec<Tag>>) -> Self

An updated list of tag key and value pairs associated with this build project.

These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.

source

pub fn get_tags(&self) -> &Option<Vec<Tag>>

An updated list of tag key and value pairs associated with this build project.

These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.

source

pub fn vpc_config(self, input: VpcConfig) -> Self

VpcConfig enables CodeBuild to access resources in an Amazon VPC.

source

pub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self

VpcConfig enables CodeBuild to access resources in an Amazon VPC.

source

pub fn get_vpc_config(&self) -> &Option<VpcConfig>

VpcConfig enables CodeBuild to access resources in an Amazon VPC.

source

pub fn badge_enabled(self, input: bool) -> Self

Set this to true to generate a publicly accessible URL for your project's build badge.

source

pub fn set_badge_enabled(self, input: Option<bool>) -> Self

Set this to true to generate a publicly accessible URL for your project's build badge.

source

pub fn get_badge_enabled(&self) -> &Option<bool>

Set this to true to generate a publicly accessible URL for your project's build badge.

source

pub fn logs_config(self, input: LogsConfig) -> Self

Information about logs for the build project. A project can create logs in CloudWatch Logs, logs in an S3 bucket, or both.

source

pub fn set_logs_config(self, input: Option<LogsConfig>) -> Self

Information about logs for the build project. A project can create logs in CloudWatch Logs, logs in an S3 bucket, or both.

source

pub fn get_logs_config(&self) -> &Option<LogsConfig>

Information about logs for the build project. A project can create logs in CloudWatch Logs, logs in an S3 bucket, or both.

source

pub fn file_system_locations(self, input: ProjectFileSystemLocation) -> Self

Appends an item to fileSystemLocations.

To override the contents of this collection use set_file_system_locations.

An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System.

source

pub fn set_file_system_locations( self, input: Option<Vec<ProjectFileSystemLocation>> ) -> Self

An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System.

source

pub fn get_file_system_locations( &self ) -> &Option<Vec<ProjectFileSystemLocation>>

An array of ProjectFileSystemLocation objects for a CodeBuild build project. A ProjectFileSystemLocation object specifies the identifier, location, mountOptions, mountPoint, and type of a file system created using Amazon Elastic File System.

source

pub fn build_batch_config(self, input: ProjectBuildBatchConfig) -> Self

Contains configuration information about a batch build project.

source

pub fn set_build_batch_config( self, input: Option<ProjectBuildBatchConfig> ) -> Self

Contains configuration information about a batch build project.

source

pub fn get_build_batch_config(&self) -> &Option<ProjectBuildBatchConfig>

Contains configuration information about a batch build project.

source

pub fn concurrent_build_limit(self, input: i32) -> Self

The maximum number of concurrent builds that are allowed for this project.

New builds are only started if the current number of builds is less than or equal to this limit. If the current build count meets this limit, new builds are throttled and are not run.

To remove this limit, set this value to -1.

source

pub fn set_concurrent_build_limit(self, input: Option<i32>) -> Self

The maximum number of concurrent builds that are allowed for this project.

New builds are only started if the current number of builds is less than or equal to this limit. If the current build count meets this limit, new builds are throttled and are not run.

To remove this limit, set this value to -1.

source

pub fn get_concurrent_build_limit(&self) -> &Option<i32>

The maximum number of concurrent builds that are allowed for this project.

New builds are only started if the current number of builds is less than or equal to this limit. If the current build count meets this limit, new builds are throttled and are not run.

To remove this limit, set this value to -1.

Trait Implementations§

source§

impl Clone for UpdateProjectFluentBuilder

source§

fn clone(&self) -> UpdateProjectFluentBuilder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UpdateProjectFluentBuilder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more