UNPKG

awscdk-resources-mongodbatlas

Version:

MongoDB Atlas CDK Construct Library for AWS CloudFormation Resources

24 lines (23 loc) 820 B
import { Construct } from "constructs"; import { ThirdPartyIntegrationProps } from "./thirdPartyIntegrationBase"; import { CfnThirdPartyIntegration } from "../../index"; export declare enum DatadogRegion { US = "US", EU = "EU", US3 = "US3", US5 = "US5" } export interface DatadogIntegrationProps extends ThirdPartyIntegrationProps { /** * Key that allows MongoDB Cloud to access your Datadog account. */ readonly apiKey: string; /** * Two-letter code that indicates which regional URL MongoDB uses to access the Datadog API. */ readonly region: DatadogRegion; } export declare class DatadogIntegration extends Construct { readonly cfnThirdPartyIntegration: CfnThirdPartyIntegration; constructor(scope: Construct, id: string, props: DatadogIntegrationProps); }