@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
37 lines (36 loc) • 1.21 kB
TypeScript
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<GetSecurityConfigurationResult>;
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<GetSecurityConfigurationResult>;
export interface GetSecurityConfigurationOutputArgs {
/**
* The ARN of the security configuration.
*/
arn: pulumi.Input<string>;
}