@Stability(value=Stable) @Internal public static final class CfnProject.ArtifactsProperty.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements CfnProject.ArtifactsProperty
CfnProject.ArtifactsPropertysoftware.amazon.jsii.JsiiObject.InitializationModeCfnProject.ArtifactsProperty.Builder, CfnProject.ArtifactsProperty.Jsii$Proxy| Modifier | Constructor and Description |
|---|---|
protected |
Jsii$Proxy(CfnProject.ArtifactsProperty.Builder builder)
Constructor that initializes the object based on literal property values passed by the
CfnProject.ArtifactsProperty.Builder. |
protected |
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
|
| Modifier and Type | Method and Description |
|---|---|
com.fasterxml.jackson.databind.JsonNode |
$jsii$toJson() |
boolean |
equals(Object o) |
String |
getArtifactIdentifier()
An identifier for this artifact definition.
|
Object |
getEncryptionDisabled()
Set to true if you do not want your output artifacts encrypted.
|
String |
getLocation()
Information about the build output artifact location:.
|
String |
getName()
Along with `path` and `namespaceType` , the pattern that AWS CodeBuild uses to name and store the output artifact:.
|
String |
getNamespaceType()
Along with `path` and `name` , the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact: - If `type` is set to `CODEPIPELINE` , CodePipeline ignores this value if specified.
|
Object |
getOverrideArtifactName()
If set to true a name specified in the buildspec file overrides the artifact name.
|
String |
getPackaging()
The type of build output artifact to create:.
|
String |
getPath()
Along with `namespaceType` and `name` , the pattern that AWS CodeBuild uses to name and store the output artifact:.
|
String |
getType()
The type of build output artifact.
|
int |
hashCode() |
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitbuilderprotected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
objRef - Reference to the JSII managed object.protected Jsii$Proxy(CfnProject.ArtifactsProperty.Builder builder)
CfnProject.ArtifactsProperty.Builder.public final String getType()
CfnProject.ArtifactsProperty
CODEPIPELINE : The build project has build output generated through CodePipeline.
The
CODEPIPELINEtype is not supported forsecondaryArtifacts.
NO_ARTIFACTS : The build project does not produce any build output.S3 : The build project stores build output in Amazon S3.getType in interface CfnProject.ArtifactsPropertypublic final String getArtifactIdentifier()
CfnProject.ArtifactsPropertygetArtifactIdentifier in interface CfnProject.ArtifactsPropertypublic final Object getEncryptionDisabled()
CfnProject.ArtifactsProperty
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.
getEncryptionDisabled in interface CfnProject.ArtifactsPropertypublic final String getLocation()
CfnProject.ArtifactsProperty
type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because CodePipeline manages its build output locations instead of CodeBuild .type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.type is set to S3 , this is the name of the output bucket.
If you specify CODEPIPELINE or NO_ARTIFACTS for the Type property, don't specify this property. For all of the other types, you must specify this property.
getLocation in interface CfnProject.ArtifactsPropertypublic final String getName()
CfnProject.ArtifactsProperty
type is set to CODEPIPELINE , AWS CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of AWS CodeBuild .type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.type is set to S3 , 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:
path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to MyArtifact.zip , then the output artifact is stored in MyArtifacts/ *build-ID* /MyArtifact.zip .path is empty, namespaceType is set to NONE , and name is set to " / ", the output artifact is stored in the root of the output bucket.path is set to MyArtifacts , namespaceType is set to BUILD_ID , and name is set to " / ", the output artifact is stored in MyArtifacts/ *build-ID* .
If you specify CODEPIPELINE or NO_ARTIFACTS for the Type property, don't specify this property. For all of the other types, you must specify this property.
getName in interface CfnProject.ArtifactsPropertypublic final String getNamespaceType()
CfnProject.ArtifactsPropertyThis is because CodePipeline manages its build output names instead of AWS CodeBuild .
type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.type is set to S3 , 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 if namespaceType is 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 .
getNamespaceType in interface CfnProject.ArtifactsPropertypublic final Object getOverrideArtifactName()
CfnProject.ArtifactsPropertyThe name specified in a buildspec 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.
getOverrideArtifactName in interface CfnProject.ArtifactsPropertypublic final String getPackaging()
CfnProject.ArtifactsProperty
type is set to CODEPIPELINE , CodePipeline ignores this value if specified. This is because CodePipeline manages its build output artifacts instead of AWS CodeBuild .type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.type is set to S3 , valid values include:NONE : AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default if packaging is not specified.ZIP : AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.getPackaging in interface CfnProject.ArtifactsPropertypublic final String getPath()
CfnProject.ArtifactsProperty
type is set to CODEPIPELINE , CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of AWS CodeBuild .type is set to NO_ARTIFACTS , this value is ignored if specified, because no build output is produced.type is set to S3 , this is the path to the output artifact. If path is not specified, path is 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 .
getPath in interface CfnProject.ArtifactsProperty@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
$jsii$toJson in interface software.amazon.jsii.JsiiSerializableCopyright © 2022. All rights reserved.