createFdrFeed()
API Stability |
Long-Term
|
The createFdrFeed() GraphQL mutation field is used to create an FDR feed.
Syntax
Below is the syntax for the createFdrFeed() mutation field:
graphql
createFdrFeed(
input: CreateFdrFeed!
): FdrFeed!
Below is an example of how this mutation field might be used:
graphql
mutation {
createFdrFeed(input:
{name: "my-fdr-feed",
repositoryName: "humio",
parser: "humio",
clientId: "1234",
clientSecret: "psst",
sqsUrl: "https://fdr.company.com",
s3Identifier: "xxxx",
enabled: false
}
)
{ id, name, enabled }
}
Given Datatypes
For CreateFdrFeed
, there
are a few parameters. Below is a list of them:
Table: CreateFdrFeed
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 28, 2025 | |||||
clientId | string | yes | The AWS client identifier of the FDR feed. | ||
clientSecret | string | yes | The AWS client secret of the FDR feed. | ||
description | string | A description of the FDR feed. | |||
enabled | boolean | yes | true | Whether ingest from the FDR feed is enabled. | |
name | string | yes | The name of the FDR feed. | ||
parser | string | yes | The unique identifier or name of the parser that should be used to parse the FDR data. We recommend using the FDR parser from the crowdstrike/fdr package, which can be referred to as crowdstrike/fdr:FDR. | ||
repositoryName | string | yes | The name of the repository of the FDR feed. | ||
s3Identifier | string | yes | The AWS S3 identifier of the FDR feed. | ||
sqsUrl | string | yes | The AWS SQS queue URL of the FDR feed. |
Returned Datatypes
As indicated by the syntax above, this mutation will return data
using the datatype,
FdrFeed
. Below are the
parameters of that datatype:
Table: FdrFeed
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 25, 2024 | |||||
clientId | string | yes | Long-Term | The AWS client identifier of the FDR feed. | |
description | string | Long-Term | A description of the FDR feed. | ||
enabled | boolean | yes | Long-Term | Whether ingest from the FDR feed is enabled. | |
id | string | yes | Long-Term | Unique identifier of the FDR feed. | |
name | string | yes | Long-Term | Name of the FDR feed. | |
parserId | string | yes | Long-Term | The unique identifier of the parser that is used to parse the FDR data. | |
s3Identifier | string | yes | Long-Term | The AWS S3 identifier of the FDR feed. | |
sqsUrl | string | yes | Long-Term | The AWS SQS queue URL of the FDR feed. |