@aws-sdk/client-codebuild 3.325.0 → 3.327.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist-types/commands/BatchDeleteBuildsCommand.d.ts +14 -0
  2. package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +222 -0
  3. package/dist-types/commands/BatchGetBuildsCommand.d.ts +192 -0
  4. package/dist-types/commands/BatchGetProjectsCommand.d.ts +196 -0
  5. package/dist-types/commands/BatchGetReportGroupsCommand.d.ts +35 -0
  6. package/dist-types/commands/BatchGetReportsCommand.d.ts +47 -0
  7. package/dist-types/commands/CreateProjectCommand.d.ts +191 -0
  8. package/dist-types/commands/CreateReportGroupCommand.d.ts +30 -0
  9. package/dist-types/commands/CreateWebhookCommand.d.ts +22 -0
  10. package/dist-types/commands/DeleteBuildBatchCommand.d.ts +15 -0
  11. package/dist-types/commands/DeleteProjectCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteReportCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteReportGroupCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteSourceCredentialsCommand.d.ts +6 -0
  16. package/dist-types/commands/DeleteWebhookCommand.d.ts +4 -0
  17. package/dist-types/commands/DescribeCodeCoveragesCommand.d.ts +20 -0
  18. package/dist-types/commands/DescribeTestCasesCommand.d.ts +18 -0
  19. package/dist-types/commands/GetReportGroupTrendCommand.d.ts +16 -0
  20. package/dist-types/commands/GetResourcePolicyCommand.d.ts +6 -0
  21. package/dist-types/commands/ImportSourceCredentialsCommand.d.ts +6 -0
  22. package/dist-types/commands/InvalidateProjectCacheCommand.d.ts +4 -0
  23. package/dist-types/commands/ListBuildBatchesCommand.d.ts +9 -0
  24. package/dist-types/commands/ListBuildBatchesForProjectCommand.d.ts +9 -0
  25. package/dist-types/commands/ListBuildsCommand.d.ts +9 -0
  26. package/dist-types/commands/ListBuildsForProjectCommand.d.ts +9 -0
  27. package/dist-types/commands/ListCuratedEnvironmentImagesCommand.d.ts +24 -0
  28. package/dist-types/commands/ListProjectsCommand.d.ts +9 -0
  29. package/dist-types/commands/ListReportGroupsCommand.d.ts +9 -0
  30. package/dist-types/commands/ListReportsCommand.d.ts +9 -0
  31. package/dist-types/commands/ListReportsForReportGroupCommand.d.ts +9 -0
  32. package/dist-types/commands/ListSharedProjectsCommand.d.ts +9 -0
  33. package/dist-types/commands/ListSharedReportGroupsCommand.d.ts +9 -0
  34. package/dist-types/commands/ListSourceCredentialsCommand.d.ts +12 -0
  35. package/dist-types/commands/PutResourcePolicyCommand.d.ts +6 -0
  36. package/dist-types/commands/RetryBuildBatchCommand.d.ts +217 -0
  37. package/dist-types/commands/RetryBuildCommand.d.ts +187 -0
  38. package/dist-types/commands/StartBuildBatchCommand.d.ts +217 -0
  39. package/dist-types/commands/StartBuildCommand.d.ts +187 -0
  40. package/dist-types/commands/StopBuildBatchCommand.d.ts +217 -0
  41. package/dist-types/commands/StopBuildCommand.d.ts +187 -0
  42. package/dist-types/commands/UpdateProjectCommand.d.ts +191 -0
  43. package/dist-types/commands/UpdateProjectVisibilityCommand.d.ts +8 -0
  44. package/dist-types/commands/UpdateReportGroupCommand.d.ts +30 -0
  45. package/dist-types/commands/UpdateWebhookCommand.d.ts +22 -0
  46. package/package.json +7 -7
@@ -146,6 +146,191 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
146
146
  * };
147
147
  * const command = new StartBuildCommand(input);
148
148
  * const response = await client.send(command);
149
+ * // { // StartBuildOutput
150
+ * // build: { // Build
151
+ * // id: "STRING_VALUE",
152
+ * // arn: "STRING_VALUE",
153
+ * // buildNumber: Number("long"),
154
+ * // startTime: new Date("TIMESTAMP"),
155
+ * // endTime: new Date("TIMESTAMP"),
156
+ * // currentPhase: "STRING_VALUE",
157
+ * // buildStatus: "STRING_VALUE",
158
+ * // sourceVersion: "STRING_VALUE",
159
+ * // resolvedSourceVersion: "STRING_VALUE",
160
+ * // projectName: "STRING_VALUE",
161
+ * // phases: [ // BuildPhases
162
+ * // { // BuildPhase
163
+ * // phaseType: "STRING_VALUE",
164
+ * // phaseStatus: "STRING_VALUE",
165
+ * // startTime: new Date("TIMESTAMP"),
166
+ * // endTime: new Date("TIMESTAMP"),
167
+ * // durationInSeconds: Number("long"),
168
+ * // contexts: [ // PhaseContexts
169
+ * // { // PhaseContext
170
+ * // statusCode: "STRING_VALUE",
171
+ * // message: "STRING_VALUE",
172
+ * // },
173
+ * // ],
174
+ * // },
175
+ * // ],
176
+ * // source: { // ProjectSource
177
+ * // type: "STRING_VALUE", // required
178
+ * // location: "STRING_VALUE",
179
+ * // gitCloneDepth: Number("int"),
180
+ * // gitSubmodulesConfig: { // GitSubmodulesConfig
181
+ * // fetchSubmodules: true || false, // required
182
+ * // },
183
+ * // buildspec: "STRING_VALUE",
184
+ * // auth: { // SourceAuth
185
+ * // type: "STRING_VALUE", // required
186
+ * // resource: "STRING_VALUE",
187
+ * // },
188
+ * // reportBuildStatus: true || false,
189
+ * // buildStatusConfig: { // BuildStatusConfig
190
+ * // context: "STRING_VALUE",
191
+ * // targetUrl: "STRING_VALUE",
192
+ * // },
193
+ * // insecureSsl: true || false,
194
+ * // sourceIdentifier: "STRING_VALUE",
195
+ * // },
196
+ * // secondarySources: [ // ProjectSources
197
+ * // {
198
+ * // type: "STRING_VALUE", // required
199
+ * // location: "STRING_VALUE",
200
+ * // gitCloneDepth: Number("int"),
201
+ * // gitSubmodulesConfig: {
202
+ * // fetchSubmodules: true || false, // required
203
+ * // },
204
+ * // buildspec: "STRING_VALUE",
205
+ * // auth: {
206
+ * // type: "STRING_VALUE", // required
207
+ * // resource: "STRING_VALUE",
208
+ * // },
209
+ * // reportBuildStatus: true || false,
210
+ * // buildStatusConfig: {
211
+ * // context: "STRING_VALUE",
212
+ * // targetUrl: "STRING_VALUE",
213
+ * // },
214
+ * // insecureSsl: true || false,
215
+ * // sourceIdentifier: "STRING_VALUE",
216
+ * // },
217
+ * // ],
218
+ * // secondarySourceVersions: [ // ProjectSecondarySourceVersions
219
+ * // { // ProjectSourceVersion
220
+ * // sourceIdentifier: "STRING_VALUE", // required
221
+ * // sourceVersion: "STRING_VALUE", // required
222
+ * // },
223
+ * // ],
224
+ * // artifacts: { // BuildArtifacts
225
+ * // location: "STRING_VALUE",
226
+ * // sha256sum: "STRING_VALUE",
227
+ * // md5sum: "STRING_VALUE",
228
+ * // overrideArtifactName: true || false,
229
+ * // encryptionDisabled: true || false,
230
+ * // artifactIdentifier: "STRING_VALUE",
231
+ * // bucketOwnerAccess: "STRING_VALUE",
232
+ * // },
233
+ * // secondaryArtifacts: [ // BuildArtifactsList
234
+ * // {
235
+ * // location: "STRING_VALUE",
236
+ * // sha256sum: "STRING_VALUE",
237
+ * // md5sum: "STRING_VALUE",
238
+ * // overrideArtifactName: true || false,
239
+ * // encryptionDisabled: true || false,
240
+ * // artifactIdentifier: "STRING_VALUE",
241
+ * // bucketOwnerAccess: "STRING_VALUE",
242
+ * // },
243
+ * // ],
244
+ * // cache: { // ProjectCache
245
+ * // type: "STRING_VALUE", // required
246
+ * // location: "STRING_VALUE",
247
+ * // modes: [ // ProjectCacheModes
248
+ * // "STRING_VALUE",
249
+ * // ],
250
+ * // },
251
+ * // environment: { // ProjectEnvironment
252
+ * // type: "STRING_VALUE", // required
253
+ * // image: "STRING_VALUE", // required
254
+ * // computeType: "STRING_VALUE", // required
255
+ * // environmentVariables: [ // EnvironmentVariables
256
+ * // { // EnvironmentVariable
257
+ * // name: "STRING_VALUE", // required
258
+ * // value: "STRING_VALUE", // required
259
+ * // type: "STRING_VALUE",
260
+ * // },
261
+ * // ],
262
+ * // privilegedMode: true || false,
263
+ * // certificate: "STRING_VALUE",
264
+ * // registryCredential: { // RegistryCredential
265
+ * // credential: "STRING_VALUE", // required
266
+ * // credentialProvider: "STRING_VALUE", // required
267
+ * // },
268
+ * // imagePullCredentialsType: "STRING_VALUE",
269
+ * // },
270
+ * // serviceRole: "STRING_VALUE",
271
+ * // logs: { // LogsLocation
272
+ * // groupName: "STRING_VALUE",
273
+ * // streamName: "STRING_VALUE",
274
+ * // deepLink: "STRING_VALUE",
275
+ * // s3DeepLink: "STRING_VALUE",
276
+ * // cloudWatchLogsArn: "STRING_VALUE",
277
+ * // s3LogsArn: "STRING_VALUE",
278
+ * // cloudWatchLogs: { // CloudWatchLogsConfig
279
+ * // status: "STRING_VALUE", // required
280
+ * // groupName: "STRING_VALUE",
281
+ * // streamName: "STRING_VALUE",
282
+ * // },
283
+ * // s3Logs: { // S3LogsConfig
284
+ * // status: "STRING_VALUE", // required
285
+ * // location: "STRING_VALUE",
286
+ * // encryptionDisabled: true || false,
287
+ * // bucketOwnerAccess: "STRING_VALUE",
288
+ * // },
289
+ * // },
290
+ * // timeoutInMinutes: Number("int"),
291
+ * // queuedTimeoutInMinutes: Number("int"),
292
+ * // buildComplete: true || false,
293
+ * // initiator: "STRING_VALUE",
294
+ * // vpcConfig: { // VpcConfig
295
+ * // vpcId: "STRING_VALUE",
296
+ * // subnets: [ // Subnets
297
+ * // "STRING_VALUE",
298
+ * // ],
299
+ * // securityGroupIds: [ // SecurityGroupIds
300
+ * // "STRING_VALUE",
301
+ * // ],
302
+ * // },
303
+ * // networkInterface: { // NetworkInterface
304
+ * // subnetId: "STRING_VALUE",
305
+ * // networkInterfaceId: "STRING_VALUE",
306
+ * // },
307
+ * // encryptionKey: "STRING_VALUE",
308
+ * // exportedEnvironmentVariables: [ // ExportedEnvironmentVariables
309
+ * // { // ExportedEnvironmentVariable
310
+ * // name: "STRING_VALUE",
311
+ * // value: "STRING_VALUE",
312
+ * // },
313
+ * // ],
314
+ * // reportArns: [ // BuildReportArns
315
+ * // "STRING_VALUE",
316
+ * // ],
317
+ * // fileSystemLocations: [ // ProjectFileSystemLocations
318
+ * // { // ProjectFileSystemLocation
319
+ * // type: "STRING_VALUE",
320
+ * // location: "STRING_VALUE",
321
+ * // mountPoint: "STRING_VALUE",
322
+ * // identifier: "STRING_VALUE",
323
+ * // mountOptions: "STRING_VALUE",
324
+ * // },
325
+ * // ],
326
+ * // debugSession: { // DebugSession
327
+ * // sessionEnabled: true || false,
328
+ * // sessionTarget: "STRING_VALUE",
329
+ * // },
330
+ * // buildBatchArn: "STRING_VALUE",
331
+ * // },
332
+ * // };
333
+ *
149
334
  * ```
150
335
  *
151
336
  * @param StartBuildCommandInput - {@link StartBuildCommandInput}
@@ -163,6 +348,8 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
163
348
  * @throws {@link ResourceNotFoundException} (client fault)
164
349
  * <p>The specified Amazon Web Services resource cannot be found.</p>
165
350
  *
351
+ * @throws {@link CodeBuildServiceException}
352
+ * <p>Base exception class for all service exceptions from CodeBuild service.</p>
166
353
  *
167
354
  */
168
355
  export declare class StartBuildCommand extends $Command<StartBuildCommandInput, StartBuildCommandOutput, CodeBuildClientResolvedConfig> {
@@ -31,6 +31,221 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met
31
31
  * };
32
32
  * const command = new StopBuildBatchCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // StopBuildBatchOutput
35
+ * // buildBatch: { // BuildBatch
36
+ * // id: "STRING_VALUE",
37
+ * // arn: "STRING_VALUE",
38
+ * // startTime: new Date("TIMESTAMP"),
39
+ * // endTime: new Date("TIMESTAMP"),
40
+ * // currentPhase: "STRING_VALUE",
41
+ * // buildBatchStatus: "STRING_VALUE",
42
+ * // sourceVersion: "STRING_VALUE",
43
+ * // resolvedSourceVersion: "STRING_VALUE",
44
+ * // projectName: "STRING_VALUE",
45
+ * // phases: [ // BuildBatchPhases
46
+ * // { // BuildBatchPhase
47
+ * // phaseType: "STRING_VALUE",
48
+ * // phaseStatus: "STRING_VALUE",
49
+ * // startTime: new Date("TIMESTAMP"),
50
+ * // endTime: new Date("TIMESTAMP"),
51
+ * // durationInSeconds: Number("long"),
52
+ * // contexts: [ // PhaseContexts
53
+ * // { // PhaseContext
54
+ * // statusCode: "STRING_VALUE",
55
+ * // message: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // },
59
+ * // ],
60
+ * // source: { // ProjectSource
61
+ * // type: "STRING_VALUE", // required
62
+ * // location: "STRING_VALUE",
63
+ * // gitCloneDepth: Number("int"),
64
+ * // gitSubmodulesConfig: { // GitSubmodulesConfig
65
+ * // fetchSubmodules: true || false, // required
66
+ * // },
67
+ * // buildspec: "STRING_VALUE",
68
+ * // auth: { // SourceAuth
69
+ * // type: "STRING_VALUE", // required
70
+ * // resource: "STRING_VALUE",
71
+ * // },
72
+ * // reportBuildStatus: true || false,
73
+ * // buildStatusConfig: { // BuildStatusConfig
74
+ * // context: "STRING_VALUE",
75
+ * // targetUrl: "STRING_VALUE",
76
+ * // },
77
+ * // insecureSsl: true || false,
78
+ * // sourceIdentifier: "STRING_VALUE",
79
+ * // },
80
+ * // secondarySources: [ // ProjectSources
81
+ * // {
82
+ * // type: "STRING_VALUE", // required
83
+ * // location: "STRING_VALUE",
84
+ * // gitCloneDepth: Number("int"),
85
+ * // gitSubmodulesConfig: {
86
+ * // fetchSubmodules: true || false, // required
87
+ * // },
88
+ * // buildspec: "STRING_VALUE",
89
+ * // auth: {
90
+ * // type: "STRING_VALUE", // required
91
+ * // resource: "STRING_VALUE",
92
+ * // },
93
+ * // reportBuildStatus: true || false,
94
+ * // buildStatusConfig: {
95
+ * // context: "STRING_VALUE",
96
+ * // targetUrl: "STRING_VALUE",
97
+ * // },
98
+ * // insecureSsl: true || false,
99
+ * // sourceIdentifier: "STRING_VALUE",
100
+ * // },
101
+ * // ],
102
+ * // secondarySourceVersions: [ // ProjectSecondarySourceVersions
103
+ * // { // ProjectSourceVersion
104
+ * // sourceIdentifier: "STRING_VALUE", // required
105
+ * // sourceVersion: "STRING_VALUE", // required
106
+ * // },
107
+ * // ],
108
+ * // artifacts: { // BuildArtifacts
109
+ * // location: "STRING_VALUE",
110
+ * // sha256sum: "STRING_VALUE",
111
+ * // md5sum: "STRING_VALUE",
112
+ * // overrideArtifactName: true || false,
113
+ * // encryptionDisabled: true || false,
114
+ * // artifactIdentifier: "STRING_VALUE",
115
+ * // bucketOwnerAccess: "STRING_VALUE",
116
+ * // },
117
+ * // secondaryArtifacts: [ // BuildArtifactsList
118
+ * // {
119
+ * // location: "STRING_VALUE",
120
+ * // sha256sum: "STRING_VALUE",
121
+ * // md5sum: "STRING_VALUE",
122
+ * // overrideArtifactName: true || false,
123
+ * // encryptionDisabled: true || false,
124
+ * // artifactIdentifier: "STRING_VALUE",
125
+ * // bucketOwnerAccess: "STRING_VALUE",
126
+ * // },
127
+ * // ],
128
+ * // cache: { // ProjectCache
129
+ * // type: "STRING_VALUE", // required
130
+ * // location: "STRING_VALUE",
131
+ * // modes: [ // ProjectCacheModes
132
+ * // "STRING_VALUE",
133
+ * // ],
134
+ * // },
135
+ * // environment: { // ProjectEnvironment
136
+ * // type: "STRING_VALUE", // required
137
+ * // image: "STRING_VALUE", // required
138
+ * // computeType: "STRING_VALUE", // required
139
+ * // environmentVariables: [ // EnvironmentVariables
140
+ * // { // EnvironmentVariable
141
+ * // name: "STRING_VALUE", // required
142
+ * // value: "STRING_VALUE", // required
143
+ * // type: "STRING_VALUE",
144
+ * // },
145
+ * // ],
146
+ * // privilegedMode: true || false,
147
+ * // certificate: "STRING_VALUE",
148
+ * // registryCredential: { // RegistryCredential
149
+ * // credential: "STRING_VALUE", // required
150
+ * // credentialProvider: "STRING_VALUE", // required
151
+ * // },
152
+ * // imagePullCredentialsType: "STRING_VALUE",
153
+ * // },
154
+ * // serviceRole: "STRING_VALUE",
155
+ * // logConfig: { // LogsConfig
156
+ * // cloudWatchLogs: { // CloudWatchLogsConfig
157
+ * // status: "STRING_VALUE", // required
158
+ * // groupName: "STRING_VALUE",
159
+ * // streamName: "STRING_VALUE",
160
+ * // },
161
+ * // s3Logs: { // S3LogsConfig
162
+ * // status: "STRING_VALUE", // required
163
+ * // location: "STRING_VALUE",
164
+ * // encryptionDisabled: true || false,
165
+ * // bucketOwnerAccess: "STRING_VALUE",
166
+ * // },
167
+ * // },
168
+ * // buildTimeoutInMinutes: Number("int"),
169
+ * // queuedTimeoutInMinutes: Number("int"),
170
+ * // complete: true || false,
171
+ * // initiator: "STRING_VALUE",
172
+ * // vpcConfig: { // VpcConfig
173
+ * // vpcId: "STRING_VALUE",
174
+ * // subnets: [ // Subnets
175
+ * // "STRING_VALUE",
176
+ * // ],
177
+ * // securityGroupIds: [ // SecurityGroupIds
178
+ * // "STRING_VALUE",
179
+ * // ],
180
+ * // },
181
+ * // encryptionKey: "STRING_VALUE",
182
+ * // buildBatchNumber: Number("long"),
183
+ * // fileSystemLocations: [ // ProjectFileSystemLocations
184
+ * // { // ProjectFileSystemLocation
185
+ * // type: "STRING_VALUE",
186
+ * // location: "STRING_VALUE",
187
+ * // mountPoint: "STRING_VALUE",
188
+ * // identifier: "STRING_VALUE",
189
+ * // mountOptions: "STRING_VALUE",
190
+ * // },
191
+ * // ],
192
+ * // buildBatchConfig: { // ProjectBuildBatchConfig
193
+ * // serviceRole: "STRING_VALUE",
194
+ * // combineArtifacts: true || false,
195
+ * // restrictions: { // BatchRestrictions
196
+ * // maximumBuildsAllowed: Number("int"),
197
+ * // computeTypesAllowed: [ // ComputeTypesAllowed
198
+ * // "STRING_VALUE",
199
+ * // ],
200
+ * // },
201
+ * // timeoutInMins: Number("int"),
202
+ * // batchReportMode: "STRING_VALUE",
203
+ * // },
204
+ * // buildGroups: [ // BuildGroups
205
+ * // { // BuildGroup
206
+ * // identifier: "STRING_VALUE",
207
+ * // dependsOn: [ // Identifiers
208
+ * // "STRING_VALUE",
209
+ * // ],
210
+ * // ignoreFailure: true || false,
211
+ * // currentBuildSummary: { // BuildSummary
212
+ * // arn: "STRING_VALUE",
213
+ * // requestedOn: new Date("TIMESTAMP"),
214
+ * // buildStatus: "STRING_VALUE",
215
+ * // primaryArtifact: { // ResolvedArtifact
216
+ * // type: "STRING_VALUE",
217
+ * // location: "STRING_VALUE",
218
+ * // identifier: "STRING_VALUE",
219
+ * // },
220
+ * // secondaryArtifacts: [ // ResolvedSecondaryArtifacts
221
+ * // {
222
+ * // type: "STRING_VALUE",
223
+ * // location: "STRING_VALUE",
224
+ * // identifier: "STRING_VALUE",
225
+ * // },
226
+ * // ],
227
+ * // },
228
+ * // priorBuildSummaryList: [ // BuildSummaries
229
+ * // {
230
+ * // arn: "STRING_VALUE",
231
+ * // requestedOn: new Date("TIMESTAMP"),
232
+ * // buildStatus: "STRING_VALUE",
233
+ * // primaryArtifact: {
234
+ * // type: "STRING_VALUE",
235
+ * // location: "STRING_VALUE",
236
+ * // identifier: "STRING_VALUE",
237
+ * // },
238
+ * // secondaryArtifacts: [
239
+ * // "<ResolvedArtifact>",
240
+ * // ],
241
+ * // },
242
+ * // ],
243
+ * // },
244
+ * // ],
245
+ * // debugSessionEnabled: true || false,
246
+ * // },
247
+ * // };
248
+ *
34
249
  * ```
35
250
  *
36
251
  * @param StopBuildBatchCommandInput - {@link StopBuildBatchCommandInput}
@@ -45,6 +260,8 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met
45
260
  * @throws {@link ResourceNotFoundException} (client fault)
46
261
  * <p>The specified Amazon Web Services resource cannot be found.</p>
47
262
  *
263
+ * @throws {@link CodeBuildServiceException}
264
+ * <p>Base exception class for all service exceptions from CodeBuild service.</p>
48
265
  *
49
266
  */
50
267
  export declare class StopBuildBatchCommand extends $Command<StopBuildBatchCommandInput, StopBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
@@ -31,6 +31,191 @@ export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBeare
31
31
  * };
32
32
  * const command = new StopBuildCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // StopBuildOutput
35
+ * // build: { // Build
36
+ * // id: "STRING_VALUE",
37
+ * // arn: "STRING_VALUE",
38
+ * // buildNumber: Number("long"),
39
+ * // startTime: new Date("TIMESTAMP"),
40
+ * // endTime: new Date("TIMESTAMP"),
41
+ * // currentPhase: "STRING_VALUE",
42
+ * // buildStatus: "STRING_VALUE",
43
+ * // sourceVersion: "STRING_VALUE",
44
+ * // resolvedSourceVersion: "STRING_VALUE",
45
+ * // projectName: "STRING_VALUE",
46
+ * // phases: [ // BuildPhases
47
+ * // { // BuildPhase
48
+ * // phaseType: "STRING_VALUE",
49
+ * // phaseStatus: "STRING_VALUE",
50
+ * // startTime: new Date("TIMESTAMP"),
51
+ * // endTime: new Date("TIMESTAMP"),
52
+ * // durationInSeconds: Number("long"),
53
+ * // contexts: [ // PhaseContexts
54
+ * // { // PhaseContext
55
+ * // statusCode: "STRING_VALUE",
56
+ * // message: "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // },
60
+ * // ],
61
+ * // source: { // ProjectSource
62
+ * // type: "STRING_VALUE", // required
63
+ * // location: "STRING_VALUE",
64
+ * // gitCloneDepth: Number("int"),
65
+ * // gitSubmodulesConfig: { // GitSubmodulesConfig
66
+ * // fetchSubmodules: true || false, // required
67
+ * // },
68
+ * // buildspec: "STRING_VALUE",
69
+ * // auth: { // SourceAuth
70
+ * // type: "STRING_VALUE", // required
71
+ * // resource: "STRING_VALUE",
72
+ * // },
73
+ * // reportBuildStatus: true || false,
74
+ * // buildStatusConfig: { // BuildStatusConfig
75
+ * // context: "STRING_VALUE",
76
+ * // targetUrl: "STRING_VALUE",
77
+ * // },
78
+ * // insecureSsl: true || false,
79
+ * // sourceIdentifier: "STRING_VALUE",
80
+ * // },
81
+ * // secondarySources: [ // ProjectSources
82
+ * // {
83
+ * // type: "STRING_VALUE", // required
84
+ * // location: "STRING_VALUE",
85
+ * // gitCloneDepth: Number("int"),
86
+ * // gitSubmodulesConfig: {
87
+ * // fetchSubmodules: true || false, // required
88
+ * // },
89
+ * // buildspec: "STRING_VALUE",
90
+ * // auth: {
91
+ * // type: "STRING_VALUE", // required
92
+ * // resource: "STRING_VALUE",
93
+ * // },
94
+ * // reportBuildStatus: true || false,
95
+ * // buildStatusConfig: {
96
+ * // context: "STRING_VALUE",
97
+ * // targetUrl: "STRING_VALUE",
98
+ * // },
99
+ * // insecureSsl: true || false,
100
+ * // sourceIdentifier: "STRING_VALUE",
101
+ * // },
102
+ * // ],
103
+ * // secondarySourceVersions: [ // ProjectSecondarySourceVersions
104
+ * // { // ProjectSourceVersion
105
+ * // sourceIdentifier: "STRING_VALUE", // required
106
+ * // sourceVersion: "STRING_VALUE", // required
107
+ * // },
108
+ * // ],
109
+ * // artifacts: { // BuildArtifacts
110
+ * // location: "STRING_VALUE",
111
+ * // sha256sum: "STRING_VALUE",
112
+ * // md5sum: "STRING_VALUE",
113
+ * // overrideArtifactName: true || false,
114
+ * // encryptionDisabled: true || false,
115
+ * // artifactIdentifier: "STRING_VALUE",
116
+ * // bucketOwnerAccess: "STRING_VALUE",
117
+ * // },
118
+ * // secondaryArtifacts: [ // BuildArtifactsList
119
+ * // {
120
+ * // location: "STRING_VALUE",
121
+ * // sha256sum: "STRING_VALUE",
122
+ * // md5sum: "STRING_VALUE",
123
+ * // overrideArtifactName: true || false,
124
+ * // encryptionDisabled: true || false,
125
+ * // artifactIdentifier: "STRING_VALUE",
126
+ * // bucketOwnerAccess: "STRING_VALUE",
127
+ * // },
128
+ * // ],
129
+ * // cache: { // ProjectCache
130
+ * // type: "STRING_VALUE", // required
131
+ * // location: "STRING_VALUE",
132
+ * // modes: [ // ProjectCacheModes
133
+ * // "STRING_VALUE",
134
+ * // ],
135
+ * // },
136
+ * // environment: { // ProjectEnvironment
137
+ * // type: "STRING_VALUE", // required
138
+ * // image: "STRING_VALUE", // required
139
+ * // computeType: "STRING_VALUE", // required
140
+ * // environmentVariables: [ // EnvironmentVariables
141
+ * // { // EnvironmentVariable
142
+ * // name: "STRING_VALUE", // required
143
+ * // value: "STRING_VALUE", // required
144
+ * // type: "STRING_VALUE",
145
+ * // },
146
+ * // ],
147
+ * // privilegedMode: true || false,
148
+ * // certificate: "STRING_VALUE",
149
+ * // registryCredential: { // RegistryCredential
150
+ * // credential: "STRING_VALUE", // required
151
+ * // credentialProvider: "STRING_VALUE", // required
152
+ * // },
153
+ * // imagePullCredentialsType: "STRING_VALUE",
154
+ * // },
155
+ * // serviceRole: "STRING_VALUE",
156
+ * // logs: { // LogsLocation
157
+ * // groupName: "STRING_VALUE",
158
+ * // streamName: "STRING_VALUE",
159
+ * // deepLink: "STRING_VALUE",
160
+ * // s3DeepLink: "STRING_VALUE",
161
+ * // cloudWatchLogsArn: "STRING_VALUE",
162
+ * // s3LogsArn: "STRING_VALUE",
163
+ * // cloudWatchLogs: { // CloudWatchLogsConfig
164
+ * // status: "STRING_VALUE", // required
165
+ * // groupName: "STRING_VALUE",
166
+ * // streamName: "STRING_VALUE",
167
+ * // },
168
+ * // s3Logs: { // S3LogsConfig
169
+ * // status: "STRING_VALUE", // required
170
+ * // location: "STRING_VALUE",
171
+ * // encryptionDisabled: true || false,
172
+ * // bucketOwnerAccess: "STRING_VALUE",
173
+ * // },
174
+ * // },
175
+ * // timeoutInMinutes: Number("int"),
176
+ * // queuedTimeoutInMinutes: Number("int"),
177
+ * // buildComplete: true || false,
178
+ * // initiator: "STRING_VALUE",
179
+ * // vpcConfig: { // VpcConfig
180
+ * // vpcId: "STRING_VALUE",
181
+ * // subnets: [ // Subnets
182
+ * // "STRING_VALUE",
183
+ * // ],
184
+ * // securityGroupIds: [ // SecurityGroupIds
185
+ * // "STRING_VALUE",
186
+ * // ],
187
+ * // },
188
+ * // networkInterface: { // NetworkInterface
189
+ * // subnetId: "STRING_VALUE",
190
+ * // networkInterfaceId: "STRING_VALUE",
191
+ * // },
192
+ * // encryptionKey: "STRING_VALUE",
193
+ * // exportedEnvironmentVariables: [ // ExportedEnvironmentVariables
194
+ * // { // ExportedEnvironmentVariable
195
+ * // name: "STRING_VALUE",
196
+ * // value: "STRING_VALUE",
197
+ * // },
198
+ * // ],
199
+ * // reportArns: [ // BuildReportArns
200
+ * // "STRING_VALUE",
201
+ * // ],
202
+ * // fileSystemLocations: [ // ProjectFileSystemLocations
203
+ * // { // ProjectFileSystemLocation
204
+ * // type: "STRING_VALUE",
205
+ * // location: "STRING_VALUE",
206
+ * // mountPoint: "STRING_VALUE",
207
+ * // identifier: "STRING_VALUE",
208
+ * // mountOptions: "STRING_VALUE",
209
+ * // },
210
+ * // ],
211
+ * // debugSession: { // DebugSession
212
+ * // sessionEnabled: true || false,
213
+ * // sessionTarget: "STRING_VALUE",
214
+ * // },
215
+ * // buildBatchArn: "STRING_VALUE",
216
+ * // },
217
+ * // };
218
+ *
34
219
  * ```
35
220
  *
36
221
  * @param StopBuildCommandInput - {@link StopBuildCommandInput}
@@ -45,6 +230,8 @@ export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBeare
45
230
  * @throws {@link ResourceNotFoundException} (client fault)
46
231
  * <p>The specified Amazon Web Services resource cannot be found.</p>
47
232
  *
233
+ * @throws {@link CodeBuildServiceException}
234
+ * <p>Base exception class for all service exceptions from CodeBuild service.</p>
48
235
  *
49
236
  */
50
237
  export declare class StopBuildCommand extends $Command<StopBuildCommandInput, StopBuildCommandOutput, CodeBuildClientResolvedConfig> {