Struct rusoto_codebuild::Project [] [src]

pub struct Project {
    pub arn: Option<String>,
    pub artifacts: Option<ProjectArtifacts>,
    pub badge: Option<ProjectBadge>,
    pub cache: Option<ProjectCache>,
    pub created: Option<f64>,
    pub description: Option<String>,
    pub encryption_key: Option<String>,
    pub environment: Option<ProjectEnvironment>,
    pub last_modified: Option<f64>,
    pub name: Option<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>,
    pub webhook: Option<Webhook>,
}

Information about a build project.

Fields

The Amazon Resource Name (ARN) of the build project.

Information about the build output artifacts for the build project.

Information about the build badge for the build project.

Information about the cache for the build project.

When the build project was created, expressed in Unix time format.

A description that makes the build project easy to identify.

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

This is expressed either as the CMK's Amazon Resource Name (ARN) or, if specified, the CMK's alias (using the format alias/alias-name ).

Information about the build environment for this build project.

When the build project's settings were last modified, expressed in Unix time format.

The name of the build project.

The 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 about the build input source code for this build project.

The tags for this build project.

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

How long, 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. The default is 60 minutes.

Information about the VPC configuration that AWS CodeBuild will access.

Information about a webhook in GitHub that connects repository events to a build project in AWS CodeBuild.

Trait Implementations

impl Default for Project
[src]

[src]

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

impl Debug for Project
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Project
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Project

impl Sync for Project