import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog Agentless Scanning AWS scan options resource. This can be used to activate and configure Agentless scan options for an AWS account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * // Configure agentless scanning for an AWS account * const example = new datadog.AgentlessScanningAwsScanOptions("example", { * awsAccountId: "123456789012", * lambda: true, * sensitiveData: false, * vulnContainersOs: true, * vulnHostOs: true, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * !/bin/sh * * Import existing agentless scanning AWS scan options by AWS account ID * * ```sh * $ pulumi import datadog:index/agentlessScanningAwsScanOptions:AgentlessScanningAwsScanOptions example 123456789012 * ``` */ export declare class AgentlessScanningAwsScanOptions extends pulumi.CustomResource { /** * Get an existing AgentlessScanningAwsScanOptions resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AgentlessScanningAwsScanOptionsState, opts?: pulumi.CustomResourceOptions): AgentlessScanningAwsScanOptions; /** * Returns true if the given object is an instance of AgentlessScanningAwsScanOptions. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AgentlessScanningAwsScanOptions; /** * The AWS account ID for which agentless scanning is configured. Must be a valid AWS account ID. */ readonly awsAccountId: pulumi.Output; /** * Indicates if scanning of Lambda functions is enabled. */ readonly lambda: pulumi.Output; /** * Indicates if scanning for sensitive data is enabled. */ readonly sensitiveData: pulumi.Output; /** * Indicates if scanning for vulnerabilities in containers is enabled. */ readonly vulnContainersOs: pulumi.Output; /** * Indicates if scanning for vulnerabilities in hosts is enabled. */ readonly vulnHostOs: pulumi.Output; /** * Create a AgentlessScanningAwsScanOptions resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AgentlessScanningAwsScanOptionsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AgentlessScanningAwsScanOptions resources. */ export interface AgentlessScanningAwsScanOptionsState { /** * The AWS account ID for which agentless scanning is configured. Must be a valid AWS account ID. */ awsAccountId?: pulumi.Input; /** * Indicates if scanning of Lambda functions is enabled. */ lambda?: pulumi.Input; /** * Indicates if scanning for sensitive data is enabled. */ sensitiveData?: pulumi.Input; /** * Indicates if scanning for vulnerabilities in containers is enabled. */ vulnContainersOs?: pulumi.Input; /** * Indicates if scanning for vulnerabilities in hosts is enabled. */ vulnHostOs?: pulumi.Input; } /** * The set of arguments for constructing a AgentlessScanningAwsScanOptions resource. */ export interface AgentlessScanningAwsScanOptionsArgs { /** * The AWS account ID for which agentless scanning is configured. Must be a valid AWS account ID. */ awsAccountId: pulumi.Input; /** * Indicates if scanning of Lambda functions is enabled. */ lambda: pulumi.Input; /** * Indicates if scanning for sensitive data is enabled. */ sensitiveData: pulumi.Input; /** * Indicates if scanning for vulnerabilities in containers is enabled. */ vulnContainersOs: pulumi.Input; /** * Indicates if scanning for vulnerabilities in hosts is enabled. */ vulnHostOs: pulumi.Input; }