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.3/services/elasticinference.ts?docs=full";
class ElasticInference {
constructor(apiFactory: client.ApiFactory);
async describeAcceleratorOfferings(params: DescribeAcceleratorOfferingsRequest, opts?: client.RequestOptions): Promise<DescribeAcceleratorOfferingsResponse>;
async describeAccelerators(params?: DescribeAcceleratorsRequest, opts?: client.RequestOptions): Promise<DescribeAcceleratorsResponse>;
async describeAcceleratorTypes(opts?: client.RequestOptions): Promise<DescribeAcceleratorTypesResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResult>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): 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.

§

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

§
describeAcceleratorTypes(opts?: client.RequestOptions): Promise<DescribeAcceleratorTypesResponse>
[src]

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

§

Returns all tags of an Elastic Inference Accelerator.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Adds the specified tags to an Elastic Inference Accelerator.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes the specified tags from an Elastic Inference Accelerator.

§Static Properties