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

JobResource

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

Contains an array of Amazon Web Services resource objects. Each object represents an Amazon S3 bucket, an Lambda function, or an Amazon Machine Image (AMI) based on Amazon EC2 that is associated with a particular job.

interface JobResource {
Ec2AmiResources?: Ec2AmiResource[] | null;
LambdaResources?: LambdaResource[] | null;
S3Resources?: S3Resource[] | null;
}

§Properties

§
Ec2AmiResources?: Ec2AmiResource[] | null
[src]

The Amazon Machine Images (AMIs) associated with this job.

§
LambdaResources?: LambdaResource[] | null
[src]

The Python-language Lambda functions for this job.

§
S3Resources?: S3Resource[] | null
[src]

An array of S3Resource objects.