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

UpdateDecoderManifestRequest

import type { UpdateDecoderManifestRequest } from "https://aws-api.deno.dev/v0.4/services/iotfleetwise.ts?docs=full";
interface UpdateDecoderManifestRequest {
description?: string | null;
name: string;
networkInterfacesToAdd?: NetworkInterface[] | null;
networkInterfacesToRemove?: string[] | null;
networkInterfacesToUpdate?: NetworkInterface[] | null;
signalDecodersToAdd?: SignalDecoder[] | null;
signalDecodersToRemove?: string[] | null;
signalDecodersToUpdate?: SignalDecoder[] | null;
status?: ManifestStatus | null;
}

§Properties

§
description?: string | null
[src]

A brief description of the decoder manifest to update.

§
name: string
[src]

The name of the decoder manifest to update.

§
networkInterfacesToAdd?: NetworkInterface[] | null
[src]

A list of information about the network interfaces to add to the decoder manifest.

§
networkInterfacesToRemove?: string[] | null
[src]

A list of network interfaces to remove from the decoder manifest.

§
networkInterfacesToUpdate?: NetworkInterface[] | null
[src]

A list of information about the network interfaces to update in the decoder manifest.

§
signalDecodersToAdd?: SignalDecoder[] | null
[src]

A list of information about decoding additional signals to add to the decoder manifest.

§
signalDecodersToRemove?: string[] | null
[src]

A list of signal decoders to remove from the decoder manifest.

§
signalDecodersToUpdate?: SignalDecoder[] | null
[src]

A list of updated information about decoding signals to update in the decoder manifest.

§
status?: ManifestStatus | null
[src]

The state of the decoder manifest. If the status is ACTIVE, the decoder manifest can't be edited. If the status is DRAFT, you can edit the decoder manifest.