@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
48 lines (47 loc) • 1.81 kB
TypeScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { AWSLambdaForwarderConfigLogSourceConfig } from "./AWSLambdaForwarderConfigLogSourceConfig";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Log Autosubscription configuration for Datadog Forwarder Lambda functions. Automatically set up triggers for existing
* and new logs for some services, ensuring no logs from new resources are missed and saving time spent on manual configuration.
*/
export declare class AWSLambdaForwarderConfig {
/**
* List of Datadog Lambda Log Forwarder ARNs in your AWS account. Defaults to `[]`.
*/
"lambdas"?: Array<string>;
/**
* Log source configuration.
*/
"logSourceConfig"?: AWSLambdaForwarderConfigLogSourceConfig;
/**
* List of service IDs set to enable automatic log collection. Discover the list of available services with the
* [Get list of AWS log ready services](https://docs.datadoghq.com/api/latest/aws-logs-integration/#get-list-of-aws-log-ready-services) endpoint.
*/
"sources"?: Array<string>;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: {
[key: string]: any;
};
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}