Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ActionTypeIdentifier

import type { ActionTypeIdentifier } from "https://aws-api.deno.dev/v0.3/services/codepipeline.ts?docs=full";

Specifies the category, owner, provider, and version of the action type.

interface ActionTypeIdentifier {
category: ActionCategory;
owner: string;
provider: string;
version: string;
}

§Properties

§

Defines what kind of action can be taken in the stage, one of the following:

  • Source
    
  • Build
    
  • Test
    
  • Deploy
    
  • Approval
    
  • Invoke
    
§
owner: string
[src]

The creator of the action type being called: AWS or ThirdParty.

§
provider: string
[src]

The provider of the action type being called. The provider name is supplied when the action type is created.

§
version: string
[src]

A string that describes the action type version.