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.26 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Redshift::ClusterParameterGroup */ export declare function getClusterParameterGroup(args: GetClusterParameterGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetClusterParameterGroupResult>; export interface GetClusterParameterGroupArgs { /** * The name of the cluster parameter group. */ parameterGroupName: string; } export interface GetClusterParameterGroupResult { /** * An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. */ readonly parameters?: outputs.redshift.ClusterParameterGroupParameter[]; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::Redshift::ClusterParameterGroup */ export declare function getClusterParameterGroupOutput(args: GetClusterParameterGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClusterParameterGroupResult>; export interface GetClusterParameterGroupOutputArgs { /** * The name of the cluster parameter group. */ parameterGroupName: pulumi.Input<string>; }