[][src]Struct rusoto_securityhub::AwsCodeBuildProjectDetails

pub struct AwsCodeBuildProjectDetails {
    pub encryption_key: Option<String>,
    pub environment: Option<AwsCodeBuildProjectEnvironment>,
    pub name: Option<String>,
    pub service_role: Option<String>,
    pub source: Option<AwsCodeBuildProjectSource>,
    pub vpc_config: Option<AwsCodeBuildProjectVpcConfig>,
}

Information about an AWS CodeBuild project.

Fields

encryption_key: Option<String>

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

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

environment: Option<AwsCodeBuildProjectEnvironment>

Information about the build environment for this build project.

name: Option<String>

The name of the build project.

service_role: Option<String>

The ARN of the IAM role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

source: Option<AwsCodeBuildProjectSource>

Information about the build input source code for this build project.

vpc_config: Option<AwsCodeBuildProjectVpcConfig>

Information about the VPC configuration that AWS CodeBuild accesses.

Trait Implementations

impl Clone for AwsCodeBuildProjectDetails[src]

impl Debug for AwsCodeBuildProjectDetails[src]

impl Default for AwsCodeBuildProjectDetails[src]

impl<'de> Deserialize<'de> for AwsCodeBuildProjectDetails[src]

impl PartialEq<AwsCodeBuildProjectDetails> for AwsCodeBuildProjectDetails[src]

impl Serialize for AwsCodeBuildProjectDetails[src]

impl StructuralPartialEq for AwsCodeBuildProjectDetails[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.