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

ElasticInference

import { ElasticInference } from "https://aws-api.deno.dev/v0.1/services/elasticinference.ts?docs=full";
class ElasticInference {
constructor(apiFactory: client.ApiFactory);
async describeAcceleratorOfferings(params: DescribeAcceleratorOfferingsRequest): Promise<DescribeAcceleratorOfferingsResponse>;
async describeAccelerators(params?: DescribeAcceleratorsRequest): Promise<DescribeAcceleratorsResponse>;
async describeAcceleratorTypes(): Promise<DescribeAcceleratorTypesResponse>;
async listTagsForResource(params: ListTagsForResourceRequest): Promise<ListTagsForResourceResult>;
async tagResource(params: TagResourceRequest): Promise<void>;
async untagResource(params: UntagResourceRequest): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new ElasticInference(apiFactory: client.ApiFactory)
[src]

§Methods

§

Describes the locations in which a given accelerator type or set of types is present in a given region.

§
describeAccelerators(params?: DescribeAcceleratorsRequest): Promise<DescribeAcceleratorsResponse>
[src]

Describes information over a provided set of accelerators belonging to an account.

§
describeAcceleratorTypes(): Promise<DescribeAcceleratorTypesResponse>
[src]

Describes the accelerator types available in a given region, as well as their characteristics, such as memory and throughput.

§
listTagsForResource(params: ListTagsForResourceRequest): Promise<ListTagsForResourceResult>
[src]

Returns all tags of an Elastic Inference Accelerator.

§
tagResource(params: TagResourceRequest): Promise<void>
[src]

Adds the specified tags to an Elastic Inference Accelerator.

§
untagResource(params: UntagResourceRequest): Promise<void>
[src]

Removes the specified tags from an Elastic Inference Accelerator.

§Static Properties