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

AwsKinesis

import type { AwsKinesis } from "https://googleapis.deno.dev/v1/pubsub:v1.ts";

Ingestion settings for Amazon Kinesis Data Streams.

interface AwsKinesis {
awsRoleArn?: string;
consumerArn?: string;
gcpServiceAccount?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "KINESIS_PERMISSION_DENIED"
| "PUBLISH_PERMISSION_DENIED"
| "STREAM_NOT_FOUND"
| "CONSUMER_NOT_FOUND";
streamArn?: string;
}

§Properties

§
awsRoleArn?: string
[src]

Required. AWS role ARN to be used for Federated Identity authentication with Kinesis. Check the Pub/Sub docs for how to set up this role and the required permissions that need to be attached to it.

§
consumerArn?: string
[src]

Required. The Kinesis consumer ARN to used for ingestion in Enhanced Fan-Out mode. The consumer must be already created and ready to be used.

§
gcpServiceAccount?: string
[src]

Required. The GCP service account to be used for Federated Identity authentication with Kinesis (via a AssumeRoleWithWebIdentity call for the provided role). The aws_role_arn must be set up with accounts.google.com:sub equals to this service account number.

§
readonly state?: "STATE_UNSPECIFIED" | "ACTIVE" | "KINESIS_PERMISSION_DENIED" | "PUBLISH_PERMISSION_DENIED" | "STREAM_NOT_FOUND" | "CONSUMER_NOT_FOUND"
[src]

Output only. An output-only field that indicates the state of the Kinesis ingestion source.

§
streamArn?: string
[src]

Required. The Kinesis stream ARN to ingest data from.