import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Schema of AWS::EMRContainers::SecurityConfiguration Type */ export declare function getSecurityConfiguration(args: GetSecurityConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetSecurityConfigurationArgs { /** * The ARN of the security configuration. */ arn: string; } export interface GetSecurityConfigurationResult { /** * The ARN of the security configuration. */ readonly arn?: string; /** * The ID of the security configuration. */ readonly id?: string; /** * An array of key-value pairs to apply to this security configuration. */ readonly tags?: outputs.Tag[]; } /** * Resource Schema of AWS::EMRContainers::SecurityConfiguration Type */ export declare function getSecurityConfigurationOutput(args: GetSecurityConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetSecurityConfigurationOutputArgs { /** * The ARN of the security configuration. */ arn: pulumi.Input; }