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>,
}
Expand description
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§
Source§impl Clone for AwsCodeBuildProjectDetails
impl Clone for AwsCodeBuildProjectDetails
Source§fn clone(&self) -> AwsCodeBuildProjectDetails
fn clone(&self) -> AwsCodeBuildProjectDetails
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AwsCodeBuildProjectDetails
impl Debug for AwsCodeBuildProjectDetails
Source§impl Default for AwsCodeBuildProjectDetails
impl Default for AwsCodeBuildProjectDetails
Source§fn default() -> AwsCodeBuildProjectDetails
fn default() -> AwsCodeBuildProjectDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsCodeBuildProjectDetails
impl<'de> Deserialize<'de> for AwsCodeBuildProjectDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AwsCodeBuildProjectDetails
Auto Trait Implementations§
impl Freeze for AwsCodeBuildProjectDetails
impl RefUnwindSafe for AwsCodeBuildProjectDetails
impl Send for AwsCodeBuildProjectDetails
impl Sync for AwsCodeBuildProjectDetails
impl Unpin for AwsCodeBuildProjectDetails
impl UnwindSafe for AwsCodeBuildProjectDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more