@@ -21,7 +21,6 @@ final class ProjectArtifacts
21
21
* > The `CODEPIPELINE` type is not supported for `secondaryArtifacts`.
22
22
*
23
23
* - `NO_ARTIFACTS`: The build project does not produce any build output.
24
- * -
25
24
* - `S3`: The build project stores build output in Amazon S3.
26
25
*/
27
26
private $ type ;
@@ -31,9 +30,7 @@ final class ProjectArtifacts
31
30
*
32
31
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
33
32
* manages its build output locations instead of CodeBuild.
34
- * -
35
33
* - If `type` is set to `NO_ARTIFACTS`, this value is ignored if specified, because no build output is produced.
36
- * -
37
34
* - If `type` is set to `S3`, this is the name of the output bucket.
38
35
*/
39
36
private $ location ;
@@ -43,9 +40,7 @@ final class ProjectArtifacts
43
40
*
44
41
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
45
42
* manages its build output names instead of CodeBuild.
46
- * -
47
43
* - If `type` is set to `NO_ARTIFACTS`, this value is ignored if specified, because no build output is produced.
48
- * -
49
44
* - If `type` is set to `S3`, this is the path to the output artifact. If `path` is not specified, `path` is not used.
50
45
*
51
46
* For example, if `path` is set to `MyArtifacts`, `namespaceType` is set to `NONE`, and `name` is set to
@@ -59,13 +54,10 @@ final class ProjectArtifacts
59
54
*
60
55
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
61
56
* manages its build output names instead of CodeBuild.
62
- * -
63
57
* - If `type` is set to `NO_ARTIFACTS`, this value is ignored if specified, because no build output is produced.
64
- * -
65
58
* - If `type` is set to `S3`, valid values include:
66
59
*
67
60
* - `BUILD_ID`: Include the build ID in the location of the build output artifact.
68
- * -
69
61
* - `NONE`: Do not include the build ID. This is the default if `namespaceType` is not specified.
70
62
*
71
63
*
@@ -79,20 +71,16 @@ final class ProjectArtifacts
79
71
*
80
72
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
81
73
* manages its build output names instead of CodeBuild.
82
- * -
83
74
* - If `type` is set to `NO_ARTIFACTS`, this value is ignored if specified, because no build output is produced.
84
- * -
85
75
* - If `type` is set to `S3`, this is the name of the output artifact object. If you set the name to be a forward slash
86
76
* ("/"), the artifact is stored in the root of the output bucket.
87
77
*
88
78
* For example:
89
79
*
90
80
* - If `path` is set to `MyArtifacts`, `namespaceType` is set to `BUILD_ID`, and `name` is set to `MyArtifact.zip`,
91
81
* then the output artifact is stored in `MyArtifacts/<build-ID>/MyArtifact.zip`.
92
- * -
93
82
* - If `path` is empty, `namespaceType` is set to `NONE`, and `name` is set to "`/`", the output artifact is stored in
94
83
* the root of the output bucket.
95
- * -
96
84
* - If `path` is set to `MyArtifacts`, `namespaceType` is set to `BUILD_ID`, and `name` is set to "`/`", the output
97
85
* artifact is stored in `MyArtifacts/<build-ID>`.
98
86
*/
@@ -103,14 +91,11 @@ final class ProjectArtifacts
103
91
*
104
92
* - If `type` is set to `CODEPIPELINE`, CodePipeline ignores this value if specified. This is because CodePipeline
105
93
* manages its build output artifacts instead of CodeBuild.
106
- * -
107
94
* - If `type` is set to `NO_ARTIFACTS`, this value is ignored if specified, because no build output is produced.
108
- * -
109
95
* - If `type` is set to `S3`, valid values include:
110
96
*
111
97
* - `NONE`: CodeBuild creates in the output bucket a folder that contains the build output. This is the default if
112
98
* `packaging` is not specified.
113
- * -
114
99
* - `ZIP`: CodeBuild creates in the output bucket a ZIP file that contains the build output.
115
100
*/
116
101
private $ packaging ;
0 commit comments