AwsKinesis(mapping=None, *, ignore_unknown_fields=False, **kwargs)Ingestion settings for Amazon Kinesis Data Streams.
| Attributes | |
|---|---|
| Name | Description | 
| state
   :noindex: | google.pubsub_v1.types.IngestionDataSourceSettings.AwsKinesis.StateOutput only. An output-only field that indicates the state of the Kinesis ingestion source. | 
| stream_arn
   :noindex: | strRequired. The Kinesis stream ARN to ingest data from. | 
| consumer_arn
   :noindex: | strRequired. The Kinesis consumer ARN to used for ingestion in Enhanced Fan-Out mode. The consumer must be already created and ready to be used. | 
| aws_role_arn
   :noindex: | strRequired. 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. | 
| gcp_service_account
   :noindex: | strRequired. The GCP service account to be used for Federated Identity authentication with Kinesis (via a AssumeRoleWithWebIdentitycall for the provided role).
   Theaws_role_arnmust be set up withaccounts.google.com:subequals to this service account
   number. | 
Classes
State
State(value)Possible states for ingestion from Amazon Kinesis Data Streams.
    - The provided `aws_role_arn` does not exist or does not
      have the appropriate permissions attached.
    - The provided `aws_role_arn` is not set up properly for
      Identity Federation using `gcp_service_account`.
    - The Pub/Sub SA is not granted the
      `iam.serviceAccounts.getOpenIdToken` permission on
      `gcp_service_account`.
PUBLISH_PERMISSION_DENIED (3):
    Permission denied encountered while publishing to the topic.
    This can happen if the Pub/Sub SA has not been granted the
    `appropriate publish
    permissions <https://cloud.google.com/pubsub/docs/access-control#pubsub.publisher>`__
STREAM_NOT_FOUND (4):
    The Kinesis stream does not exist.
CONSUMER_NOT_FOUND (5):
    The Kinesis consumer does not exist.