[][src]Struct rusoto_codebuild::UpdateProjectInput

pub struct UpdateProjectInput {
    pub artifacts: Option<ProjectArtifacts>,
    pub badge_enabled: Option<bool>,
    pub cache: Option<ProjectCache>,
    pub description: Option<String>,
    pub encryption_key: Option<String>,
    pub environment: Option<ProjectEnvironment>,
    pub name: String,
    pub service_role: Option<String>,
    pub source: Option<ProjectSource>,
    pub tags: Option<Vec<Tag>>,
    pub timeout_in_minutes: Option<i64>,
    pub vpc_config: Option<VpcConfig>,
}

Fields

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

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

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

A new or replacement description of the build project.

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

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

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

The name of the build project.

You cannot change a build project's name.

The replacement ARN of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

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

The replacement set of tags for this build project.

These tags are available for use by AWS services that support AWS CodeBuild build project tags.

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

VpcConfig enables AWS CodeBuild to access resources in an Amazon VPC.

Trait Implementations

impl Clone for UpdateProjectInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for UpdateProjectInput
[src]

Returns the "default value" for a type. Read more

impl PartialEq<UpdateProjectInput> for UpdateProjectInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for UpdateProjectInput
[src]

Formats the value using the given formatter. Read more

impl Serialize for UpdateProjectInput
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T> Erased for T

impl<T> Same for T

Should always be Self