Class: Orchestrator Plugin AWS Service

by Simon Sparks · 7 February 2026

This is a sample of how to create service which extends the OrchestratorBaseService using the Build Tools.

GitHub Repository: https://github.com/SimonSparksUK/Orchestrator

Filename: OrchestratorPluginAWSService.ts

import { OrchestratorBaseService } from "./OrchestratorBaseService";

export class OrchestratorPluginAWSService extends OrchestratorBaseService {

    constructor(strProjectID: string) {

        super(strProjectID, "PluginAWS");
    }
    
}

Class Functions:


Discover more from Cloud Build Tools

Subscribe to get the latest posts sent to your email.

You may also like