@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class ProjectArtifacts extends Object implements Serializable, Cloneable, StructuredPojo
Information about the build output artifacts for the build project.
Constructor and Description |
---|
ProjectArtifacts() |
Modifier and Type | Method and Description |
---|---|
ProjectArtifacts |
clone() |
boolean |
equals(Object obj) |
String |
getLocation()
Information about the build output artifact location, as follows:
|
String |
getName()
Along with
path and namespaceType , the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows: |
String |
getNamespaceType()
Along with
path and name , the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows: |
String |
getPackaging()
The type of build output artifact to create, as follows:
|
String |
getPath()
Along with
namespaceType and name , the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows: |
String |
getType()
The type of build output artifact.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setLocation(String location)
Information about the build output artifact location, as follows:
|
void |
setName(String name)
Along with
path and namespaceType , the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows: |
void |
setNamespaceType(ArtifactNamespace namespaceType)
Along with
path and name , the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows: |
void |
setNamespaceType(String namespaceType)
Along with
path and name , the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows: |
void |
setPackaging(ArtifactPackaging packaging)
The type of build output artifact to create, as follows:
|
void |
setPackaging(String packaging)
The type of build output artifact to create, as follows:
|
void |
setPath(String path)
Along with
namespaceType and name , the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows: |
void |
setType(ArtifactsType type)
The type of build output artifact.
|
void |
setType(String type)
The type of build output artifact.
|
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
ProjectArtifacts |
withLocation(String location)
Information about the build output artifact location, as follows:
|
ProjectArtifacts |
withName(String name)
Along with
path and namespaceType , the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows: |
ProjectArtifacts |
withNamespaceType(ArtifactNamespace namespaceType)
Along with
path and name , the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows: |
ProjectArtifacts |
withNamespaceType(String namespaceType)
Along with
path and name , the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows: |
ProjectArtifacts |
withPackaging(ArtifactPackaging packaging)
The type of build output artifact to create, as follows:
|
ProjectArtifacts |
withPackaging(String packaging)
The type of build output artifact to create, as follows:
|
ProjectArtifacts |
withPath(String path)
Along with
namespaceType and name , the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows: |
ProjectArtifacts |
withType(ArtifactsType type)
The type of build output artifact.
|
ProjectArtifacts |
withType(String type)
The type of build output artifact.
|
public void setType(String type)
The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
type
- The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
ArtifactsType
public String getType()
The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
ArtifactsType
public ProjectArtifacts withType(String type)
The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
type
- The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
ArtifactsType
public void setType(ArtifactsType type)
The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
type
- The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
ArtifactsType
public ProjectArtifacts withType(ArtifactsType type)
The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
type
- The type of build output artifact. Valid values include:
CODEPIPELINE
: The build project will have build output generated through AWS CodePipeline.
NO_ARTIFACTS
: The build project will not produce any build output.
S3
: The build project will store build output in Amazon Simple Storage Service (Amazon S3).
ArtifactsType
public void setLocation(String location)
Information about the build output artifact location, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the name of the output bucket.
location
- Information about the build output artifact location, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the name of the output bucket.
public String getLocation()
Information about the build output artifact location, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the name of the output bucket.
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the name of the output bucket.
public ProjectArtifacts withLocation(String location)
Information about the build output artifact location, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the name of the output bucket.
location
- Information about the build output artifact location, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output locations instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the name of the output bucket.
public void setPath(String path)
Along with namespaceType
and name
, the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the path to the output artifact. If path
is
not specified, then path
will not be used.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
NONE
, and name
is set to MyArtifact.zip
, then the output artifact would be
stored in the output bucket at MyArtifacts/MyArtifact.zip
.
path
- Along with namespaceType
and name
, the pattern that AWS CodeBuild will use to
name and store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the path to the output artifact. If
path
is not specified, then path
will not be used.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
NONE
, and name
is set to MyArtifact.zip
, then the output artifact
would be stored in the output bucket at MyArtifacts/MyArtifact.zip
.
public String getPath()
Along with namespaceType
and name
, the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the path to the output artifact. If path
is
not specified, then path
will not be used.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
NONE
, and name
is set to MyArtifact.zip
, then the output artifact would be
stored in the output bucket at MyArtifacts/MyArtifact.zip
.
namespaceType
and name
, the pattern that AWS CodeBuild will use to
name and store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the path to the output artifact. If
path
is not specified, then path
will not be used.
For example, if path
is set to MyArtifacts
, namespaceType
is set
to NONE
, and name
is set to MyArtifact.zip
, then the output
artifact would be stored in the output bucket at MyArtifacts/MyArtifact.zip
.
public ProjectArtifacts withPath(String path)
Along with namespaceType
and name
, the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the path to the output artifact. If path
is
not specified, then path
will not be used.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
NONE
, and name
is set to MyArtifact.zip
, then the output artifact would be
stored in the output bucket at MyArtifacts/MyArtifact.zip
.
path
- Along with namespaceType
and name
, the pattern that AWS CodeBuild will use to
name and store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the path to the output artifact. If
path
is not specified, then path
will not be used.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
NONE
, and name
is set to MyArtifact.zip
, then the output artifact
would be stored in the output bucket at MyArtifacts/MyArtifact.zip
.
public void setNamespaceType(String namespaceType)
Along with path
and name
, the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, then 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
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
namespaceType
- Along with path
and name
, the pattern that AWS CodeBuild will use to determine
the name and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, then 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
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
ArtifactNamespace
public String getNamespaceType()
Along with path
and name
, the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, then 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
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
path
and name
, the pattern that AWS CodeBuild will use to determine
the name and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, then 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
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
ArtifactNamespace
public ProjectArtifacts withNamespaceType(String namespaceType)
Along with path
and name
, the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, then 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
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
namespaceType
- Along with path
and name
, the pattern that AWS CodeBuild will use to determine
the name and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, then 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
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
ArtifactNamespace
public void setNamespaceType(ArtifactNamespace namespaceType)
Along with path
and name
, the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, then 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
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
namespaceType
- Along with path
and name
, the pattern that AWS CodeBuild will use to determine
the name and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, then 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
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
ArtifactNamespace
public ProjectArtifacts withNamespaceType(ArtifactNamespace namespaceType)
Along with path
and name
, the pattern that AWS CodeBuild will use to determine the name
and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, then 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
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
namespaceType
- Along with path
and name
, the pattern that AWS CodeBuild will use to determine
the name and location to store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, then 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
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
ArtifactNamespace
public void setName(String name)
Along with path
and namespaceType
, the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the name of the output artifact object.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
BUILD_ID
, and name
is set to MyArtifact.zip
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
name
- Along with path
and namespaceType
, the pattern that AWS CodeBuild will use to
name and store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the name of the output artifact object.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
BUILD_ID
, and name
is set to MyArtifact.zip
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
public String getName()
Along with path
and namespaceType
, the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the name of the output artifact object.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
BUILD_ID
, and name
is set to MyArtifact.zip
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
path
and namespaceType
, the pattern that AWS CodeBuild will use to
name and store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the name of the output artifact object.
For example, if path
is set to MyArtifacts
, namespaceType
is set
to BUILD_ID
, and name
is set to MyArtifact.zip
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
public ProjectArtifacts withName(String name)
Along with path
and namespaceType
, the pattern that AWS CodeBuild will use to name and
store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, this is the name of the output artifact object.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
BUILD_ID
, and name
is set to MyArtifact.zip
, then the output artifact
would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
name
- Along with path
and namespaceType
, the pattern that AWS CodeBuild will use to
name and store the output artifact, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, this is the name of the output artifact object.
For example, if path
is set to MyArtifacts
, namespaceType
is set to
BUILD_ID
, and name
is set to MyArtifact.zip
, then the output
artifact would be stored in MyArtifacts/build-ID/MyArtifact.zip
.
public void setPackaging(String packaging)
The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output. This is
the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
packaging
- The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output.
This is the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
ArtifactPackaging
public String getPackaging()
The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output. This is
the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output.
This is the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
ArtifactPackaging
public ProjectArtifacts withPackaging(String packaging)
The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output. This is
the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
packaging
- The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output.
This is the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
ArtifactPackaging
public void setPackaging(ArtifactPackaging packaging)
The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output. This is
the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
packaging
- The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output.
This is the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
ArtifactPackaging
public ProjectArtifacts withPackaging(ArtifactPackaging packaging)
The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified, because
no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output. This is
the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
packaging
- The type of build output artifact to create, as follows:
If type
is set to CODEPIPELINE
, then AWS CodePipeline will ignore this value if
specified. This is because AWS CodePipeline manages its build output artifacts instead of AWS CodeBuild.
If type
is set to NO_ARTIFACTS
, then this value will be ignored if specified,
because no build output will be produced.
If type
is set to S3
, valid values include:
NONE
: AWS CodeBuild will create in the output bucket a folder containing the build output.
This is the default if packaging
is not specified.
ZIP
: AWS CodeBuild will create in the output bucket a ZIP file containing the build output.
ArtifactPackaging
public String toString()
toString
in class Object
Object.toString()
public ProjectArtifacts clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.