UNPKG

@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)

33 lines (32 loc) 1.13 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The AWS::MemoryDB::ParameterGroup resource creates an Amazon MemoryDB ParameterGroup. */ export declare function getParameterGroup(args: GetParameterGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetParameterGroupResult>; export interface GetParameterGroupArgs { /** * The name of the parameter group. */ parameterGroupName: string; } export interface GetParameterGroupResult { /** * The Amazon Resource Name (ARN) of the parameter group. */ readonly arn?: string; /** * An array of key-value pairs to apply to this parameter group. */ readonly tags?: outputs.Tag[]; } /** * The AWS::MemoryDB::ParameterGroup resource creates an Amazon MemoryDB ParameterGroup. */ export declare function getParameterGroupOutput(args: GetParameterGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetParameterGroupResult>; export interface GetParameterGroupOutputArgs { /** * The name of the parameter group. */ parameterGroupName: pulumi.Input<string>; }