import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets the AWS CMK accessor for an Aiven project. The accessor is used to authenticate Aiven to your AWS Key Management Service (KMS). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getCmkAccessorAws({ * project: "my-project", * }); * ``` */ export declare function getCmkAccessorAws(args: GetCmkAccessorAwsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCmkAccessorAws. */ export interface GetCmkAccessorAwsArgs { /** * Project name. */ project: string; timeouts?: inputs.GetCmkAccessorAwsTimeouts; } /** * A collection of values returned by getCmkAccessorAws. */ export interface GetCmkAccessorAwsResult { /** * Resource ID, equal to `project`. */ readonly id: string; /** * The AWS IAM principal ARN that Aiven uses to access your KMS key. */ readonly principal: string; /** * Project name. */ readonly project: string; readonly timeouts?: outputs.GetCmkAccessorAwsTimeouts; } /** * Gets the AWS CMK accessor for an Aiven project. The accessor is used to authenticate Aiven to your AWS Key Management Service (KMS). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getCmkAccessorAws({ * project: "my-project", * }); * ``` */ export declare function getCmkAccessorAwsOutput(args: GetCmkAccessorAwsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCmkAccessorAws. */ export interface GetCmkAccessorAwsOutputArgs { /** * Project name. */ project: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=getCmkAccessorAws.d.ts.map