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

DeregisterStreamConsumerInput

import type { DeregisterStreamConsumerInput } from "https://aws-api.deno.dev/v0.3/services/kinesis.ts?docs=full";
interface DeregisterStreamConsumerInput {
ConsumerARN?: string | null;
ConsumerName?: string | null;
StreamARN?: string | null;
}

§Properties

§
ConsumerARN?: string | null
[src]

The ARN returned by Kinesis Data Streams when you registered the consumer. If you don't know the ARN of the consumer that you want to deregister, you can use the ListStreamConsumers operation to get a list of the descriptions of all the consumers that are currently registered with a given data stream. The description of a consumer contains its ARN.

§
ConsumerName?: string | null
[src]

The name that you gave to the consumer.

§
StreamARN?: string | null
[src]

The ARN of the Kinesis data stream that the consumer is registered with. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces.