Struct cfn::aws::codebuild::ProjectProperties [] [src]

pub struct ProjectProperties {
    pub artifacts: Value<Artifacts>,
    pub badge_enabled: Option<Value<bool>>,
    pub cache: Option<Value<ProjectCache>>,
    pub description: Option<Value<String>>,
    pub encryption_key: Option<Value<String>>,
    pub environment: Value<Environment>,
    pub name: Option<Value<String>>,
    pub service_role: Value<String>,
    pub source: Value<Source>,
    pub tags: Option<ValueList<Tag>>,
    pub timeout_in_minutes: Option<Value<u32>>,
    pub triggers: Option<Value<ProjectTriggers>>,
    pub vpc_config: Option<Value<VpcConfig>>,
}

Properties for the Project resource.

Fields

Property Artifacts.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property BadgeEnabled.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Cache.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EncryptionKey.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Environment.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property ServiceRole.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Source.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Tags.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property TimeoutInMinutes.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Triggers.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property VpcConfig.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for ProjectProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ProjectProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ProjectProperties> for Project
[src]

[src]

Performs the conversion.

Auto Trait Implementations