[−][src]Struct rusoto_codebuild::ProjectArtifacts
Information about the build output artifacts for the build project.
Fields
artifact_identifier: Option<String>An identifier for this artifact definition.
encryption_disabled: Option<bool>Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an invalidInputException is thrown.
location: Option<String>Information about the build output artifact location:
-
If
typeis set toCODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild. -
If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced. -
If
typeis set toS3, this is the name of the output bucket.
name: Option<String>Along with path and namespaceType, the pattern that AWS CodeBuild uses to name and store the output artifact:
-
If
typeis set toCODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild. -
If
typeis set toNOARTIFACTS, this value is ignored if specified, because no build output is produced. -
If
typeis set toS3, this is the name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.
For example:
-
If
pathis set toMyArtifacts,namespaceTypeis set toBUILDID, andnameis set toMyArtifact.zip, then the output artifact is stored inMyArtifacts/build-ID/MyArtifact.zip. -
If
pathis empty,namespaceTypeis set toNONE, andnameis set to "/", the output artifact is stored in the root of the output bucket. -
If
pathis set toMyArtifacts,namespaceTypeis set toBUILD_ID, andnameis set to "/", the output artifact is stored inMyArtifacts/build-ID.
namespace_type: Option<String>Along with path and name, the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact:
-
If
typeis set toCODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild. -
If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced. -
If
typeis set toS3, valid values include:-
BUILD_ID: Include the build ID in the location of the build output artifact. -
NONE: Do not include the build ID. This is the default ifnamespaceTypeis not specified.
-
For example, if path is set to MyArtifacts, namespaceType is set to BUILD_ID, and name is set to MyArtifact.zip, the output artifact is stored in MyArtifacts/build-ID/MyArtifact.zip.
override_artifact_name: Option<bool>If this flag is set, a name specified in the build spec file overrides the artifact name. The name specified in a build spec file is calculated at build time and uses the Shell Command Language. For example, you can append a date and time to your artifact name so that it is always unique.
packaging: Option<String>The type of build output artifact to create:
-
If
typeis set toCODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild. -
If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced. -
If
typeis set toS3, valid values include:-
NONE: AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default ifpackagingis not specified. -
ZIP: AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.
-
path: Option<String>Along with namespaceType and name, the pattern that AWS CodeBuild uses to name and store the output artifact:
-
If
typeis set toCODEPIPELINE, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild. -
If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced. -
If
typeis set toS3, this is the path to the output artifact. Ifpathis not specified,pathis not used.
For example, if path is set to MyArtifacts, namespaceType is set to NONE, and name is set to MyArtifact.zip, the output artifact is stored in the output bucket at MyArtifacts/MyArtifact.zip.
type_: StringThe type of build output artifact. Valid values include:
-
CODEPIPELINE: The build project has build output generated through AWS CodePipeline. -
NO_ARTIFACTS: The build project does not produce any build output. -
S3: The build project stores build output in Amazon Simple Storage Service (Amazon S3).
Trait Implementations
impl PartialEq<ProjectArtifacts> for ProjectArtifacts[src]
fn eq(&self, other: &ProjectArtifacts) -> bool[src]
fn ne(&self, other: &ProjectArtifacts) -> bool[src]
impl Default for ProjectArtifacts[src]
fn default() -> ProjectArtifacts[src]
impl Clone for ProjectArtifacts[src]
fn clone(&self) -> ProjectArtifacts[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for ProjectArtifacts[src]
impl Serialize for ProjectArtifacts[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for ProjectArtifacts[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ProjectArtifacts
impl Sync for ProjectArtifacts
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self