mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* chore(cloud-runner): migrate/replace deps aws-sdk v2 to v3 * chore(aws): refactor aws services to support SDK v3 * chore(aws): refactor aws runner to support SDK v3 * chore(aws): update dist * fix(aws): error handling wrap try/catch to avoid unhandled promise rejections. * fix(aws): keeping the syntax simpler for arrays
10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
import { StackResource } from '@aws-sdk/client-cloudformation';
|
|
|
|
class CloudRunnerAWSTaskDef {
|
|
public taskDefStackName!: string;
|
|
public taskDefCloudFormation!: string;
|
|
public taskDefResources: StackResource[] | undefined;
|
|
public baseResources: StackResource[] | undefined;
|
|
}
|
|
export default CloudRunnerAWSTaskDef;
|