API Stability |
Long-Term
|
The createAwsS3SqsIngestFeed() GraphQL mutation is used to create an ingest feed that uses Amazon's AWS S3 and SQS.
This is an experimental feature, not ready for production.
Syntax
Below is the syntax for the createAwsS3SqsIngestFeed() mutation field:
graphql
createAwsS3SqsIngestFeed(
input: CreateAwsS3SqsIngestFeed!
): IngestFeed!
The input
contains data
for creating an ingest feed that uses AWS S3 and SQS. Below is an
example of how this mutation field might be used:
graphql
mutation {
createAwsS3SqsIngestFeed(input:
{ repositoryName: "humio",
name: "main-server",
parser: "audit-log",
authentication: {kind: IamRole, roleArn: "arn:aws_iam::1234:user/admin"},
sqsUrl: "http://address.com/something",
region: "us-west-2",
enabled: true,
preprocessing: {kind: SplitAwsRecords},
compression: Auto
} )
{name, enabled }
}
Given Datatypes
For createAwsS3SqsIngestFeed, there are several parameters. Below is a list of them:
Table: CreateAwsS3SqsIngestFeed
Parameter | Type | Required | Default | Stability | Description |
---|---|---|---|---|---|
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column. | |||||
Table last updated: Sep 17, 2024 | |||||
authentication | IngestFeedAwsAuthenticationInput | yes | Long-Term | How to authenticate to AWS. See IngestFeedAwsAuthenticationInput . | |
compression | IngestFeedCompression | yes | Long-Term | Compression scheme of the file. See IngestFeedCompression . | |
description | UpdateIngestFeedDescription | Long-Term | The description of the ingest feed. See UpdateIngestFeedDescription . | ||
enabled | boolean | yes | Long-Term | Whether ingest from the ingest feed is enabled. | |
name | string | yes | Long-Term | The name of the ingest feed. | |
parser | string | yes | Long-Term | The unique identifier or name of the parser that should be used to parse the ingest feed. Parsers in packages can be referred to as packagescope/packagename:parsername . | |
preprocessing | IngestFeedPreprocessingInput | yes | Long-Term | The preprocessing to apply to an ingest feed before parsing. See IngestFeedPreprocessingInput . | |
region | string | yes | Long-Term | The AWS region in which to connect. | |
repositoryName | RepoOrViewName | yes | Long-Term | Name of the repository of the ingest feed. RepoOrViewName is a scalar. | |
sqsUrl | string | yes | Long-Term | The AWS SQS queue URL. |
Returned Datatypes
The IngestFeed return datatype has many parameters. Below is a list of them:
Table: IngestFeed
Parameter | Type | Required | Default | Stability | Description |
---|---|---|---|---|---|
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column. | |||||
Table last updated: Mar 26, 2025 | |||||
createdAt | long | yes | Long-Term | Unix timestamp for when this feed was created. | |
description | string | Long-Term | A description of the ingest feed. | ||
enabled | boolean | yes | Long-Term | Whether the ingest from the ingest feed is enabled. | |
executionInfo | IngestFeedExecutionInfo | Long-Term | Details about how the ingest feed is running. See IngestFeedExecutionInfo . | ||
id | string | yes | Long-Term | The unique identifier of the ingest feed. | |
name | string | yes | Long-Term | The name of the ingest feed. | |
parser | parser | Long-Term | The parser used to parse the ingest feed. See parser . | ||
source | IngestFeedSource | yes | Long-Term | The source from which the ingest feed will ingest. See IngestFeedS3SqsSource . |