import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class AwsCredentials extends pulumi.CustomResource {
    /**
     * Get an existing AwsCredentials 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<pulumi.ID>, state?: AwsCredentialsState, opts?: pulumi.CustomResourceOptions): AwsCredentials;
    /**
     * Returns true if the given object is an instance of AwsCredentials.  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 AwsCredentials;
    /**
     * credentials for the AWS authentication
     */
    readonly authenticationData: pulumi.Output<outputs.AwsCredentialsAuthenticationData>;
    /**
     * The name of the credentials
     */
    readonly label: pulumi.Output<string | undefined>;
    /**
     * The type of the AWS partition
     */
    readonly partitionType: pulumi.Output<string>;
    /**
     * If enabled (`true`) the attribute `supporting_services` will not get synchronized with Dynatrace. You will be able to
     * manage them via WebUI without interference by Terraform.
     */
    readonly supportingServicesManagedInDynatrace: pulumi.Output<boolean | undefined>;
    /**
     * supporting services to be monitored
     */
    readonly supportingServicesToMonitors: pulumi.Output<outputs.AwsCredentialsSupportingServicesToMonitor[] | undefined>;
    /**
     * Monitor only resources which have specified AWS tags (`true`) or all resources (`false`)
     */
    readonly taggedOnly: pulumi.Output<boolean>;
    /**
     * AWS tags to be monitored. You can specify up to 10 tags. Only applicable when the **tagged_only** parameter is set to `true`
     */
    readonly tagsToMonitors: pulumi.Output<outputs.AwsCredentialsTagsToMonitor[] | undefined>;
    /**
     * Any attributes that aren't yet supported by this provider
     */
    readonly unknowns: pulumi.Output<string | undefined>;
    /**
     * Create a AwsCredentials 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: AwsCredentialsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering AwsCredentials resources.
 */
export interface AwsCredentialsState {
    /**
     * credentials for the AWS authentication
     */
    authenticationData?: pulumi.Input<inputs.AwsCredentialsAuthenticationData>;
    /**
     * The name of the credentials
     */
    label?: pulumi.Input<string>;
    /**
     * The type of the AWS partition
     */
    partitionType?: pulumi.Input<string>;
    /**
     * If enabled (`true`) the attribute `supporting_services` will not get synchronized with Dynatrace. You will be able to
     * manage them via WebUI without interference by Terraform.
     */
    supportingServicesManagedInDynatrace?: pulumi.Input<boolean>;
    /**
     * supporting services to be monitored
     */
    supportingServicesToMonitors?: pulumi.Input<pulumi.Input<inputs.AwsCredentialsSupportingServicesToMonitor>[]>;
    /**
     * Monitor only resources which have specified AWS tags (`true`) or all resources (`false`)
     */
    taggedOnly?: pulumi.Input<boolean>;
    /**
     * AWS tags to be monitored. You can specify up to 10 tags. Only applicable when the **tagged_only** parameter is set to `true`
     */
    tagsToMonitors?: pulumi.Input<pulumi.Input<inputs.AwsCredentialsTagsToMonitor>[]>;
    /**
     * Any attributes that aren't yet supported by this provider
     */
    unknowns?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a AwsCredentials resource.
 */
export interface AwsCredentialsArgs {
    /**
     * credentials for the AWS authentication
     */
    authenticationData: pulumi.Input<inputs.AwsCredentialsAuthenticationData>;
    /**
     * The name of the credentials
     */
    label?: pulumi.Input<string>;
    /**
     * The type of the AWS partition
     */
    partitionType: pulumi.Input<string>;
    /**
     * If enabled (`true`) the attribute `supporting_services` will not get synchronized with Dynatrace. You will be able to
     * manage them via WebUI without interference by Terraform.
     */
    supportingServicesManagedInDynatrace?: pulumi.Input<boolean>;
    /**
     * supporting services to be monitored
     */
    supportingServicesToMonitors?: pulumi.Input<pulumi.Input<inputs.AwsCredentialsSupportingServicesToMonitor>[]>;
    /**
     * Monitor only resources which have specified AWS tags (`true`) or all resources (`false`)
     */
    taggedOnly: pulumi.Input<boolean>;
    /**
     * AWS tags to be monitored. You can specify up to 10 tags. Only applicable when the **tagged_only** parameter is set to `true`
     */
    tagsToMonitors?: pulumi.Input<pulumi.Input<inputs.AwsCredentialsTagsToMonitor>[]>;
    /**
     * Any attributes that aren't yet supported by this provider
     */
    unknowns?: pulumi.Input<string>;
}
