Redshift Cluster Parameter Group Args
data class RedshiftClusterParameterGroupArgs(val location: Output<String>? = null, val name: Output<String>? = null, val properties: Output<RedshiftClusterParameterGroupPropertiesArgs>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<RedshiftClusterParameterGroupArgs>
A Microsoft.AwsConnector resource Uses Azure REST API version 2024-12-01. In version 2.x of the Azure Native provider, it used API version 2024-12-01.
Example Usage
RedshiftClusterParameterGroups_CreateOrReplace
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var redshiftClusterParameterGroup = new AzureNative.AwsConnector.RedshiftClusterParameterGroup("redshiftClusterParameterGroup", new()
{
Location = "gskgxjliwptm",
Name = "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
Properties = new AzureNative.AwsConnector.Inputs.RedshiftClusterParameterGroupPropertiesArgs
{
Arn = "whliokkrefhwytv",
AwsAccountId = "fdljzalgig",
AwsProperties = new AzureNative.AwsConnector.Inputs.AwsRedshiftClusterParameterGroupPropertiesArgs
{
Description = "gvl",
ParameterGroupFamily = "bbhnqerzrhqtinntphvuim",
ParameterGroupName = "tiqxhqigpmuckmnpgijvnpwzb",
Parameters = new[]
{
new AzureNative.AwsConnector.Inputs.ParameterArgs
{
ParameterName = "jxeucnajvjzv",
ParameterValue = "ubxmwmoxeslbruenu",
},
},
Tags = new[]
{
new AzureNative.AwsConnector.Inputs.TagArgs
{
Key = "ucdvfenzatoxmpdicwhztuvgtnku",
Value = "qpznlj",
},
},
},
AwsRegion = "wrhyhrmwhdmlnjjbrl",
AwsSourceSchema = "nkdbqnqvsdnvogwatfxlubppr",
AwsTags =
{
{ "key6090", "vaqtqamdjobsgwecpvyxeerjrrxac" },
},
PublicCloudConnectorsResourceId = "nrs",
PublicCloudResourceName = "xnrwtxesebdfzrqiamebczhoyjbqeq",
},
ResourceGroupName = "rgredshiftClusterParameterGroup",
Tags =
{
{ "key4322", "zjgvmwcimdtqwxhy" },
},
});
});
Content copied to clipboard
package main
import (
awsconnector "github.com/pulumi/pulumi-azure-native-sdk/awsconnector/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := awsconnector.NewRedshiftClusterParameterGroup(ctx, "redshiftClusterParameterGroup", &awsconnector.RedshiftClusterParameterGroupArgs{
Location: pulumi.String("gskgxjliwptm"),
Name: pulumi.String("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])"),
Properties: &awsconnector.RedshiftClusterParameterGroupPropertiesArgs{
Arn: pulumi.String("whliokkrefhwytv"),
AwsAccountId: pulumi.String("fdljzalgig"),
AwsProperties: &awsconnector.AwsRedshiftClusterParameterGroupPropertiesArgs{
Description: pulumi.String("gvl"),
ParameterGroupFamily: pulumi.String("bbhnqerzrhqtinntphvuim"),
ParameterGroupName: pulumi.String("tiqxhqigpmuckmnpgijvnpwzb"),
Parameters: awsconnector.ParameterArray{
&awsconnector.ParameterArgs{
ParameterName: pulumi.String("jxeucnajvjzv"),
ParameterValue: pulumi.String("ubxmwmoxeslbruenu"),
},
},
Tags: awsconnector.TagArray{
&awsconnector.TagArgs{
Key: pulumi.String("ucdvfenzatoxmpdicwhztuvgtnku"),
Value: pulumi.String("qpznlj"),
},
},
},
AwsRegion: pulumi.String("wrhyhrmwhdmlnjjbrl"),
AwsSourceSchema: pulumi.String("nkdbqnqvsdnvogwatfxlubppr"),
AwsTags: pulumi.StringMap{
"key6090": pulumi.String("vaqtqamdjobsgwecpvyxeerjrrxac"),
},
PublicCloudConnectorsResourceId: pulumi.String("nrs"),
PublicCloudResourceName: pulumi.String("xnrwtxesebdfzrqiamebczhoyjbqeq"),
},
ResourceGroupName: pulumi.String("rgredshiftClusterParameterGroup"),
Tags: pulumi.StringMap{
"key4322": pulumi.String("zjgvmwcimdtqwxhy"),
},
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.awsconnector.RedshiftClusterParameterGroup;
import com.pulumi.azurenative.awsconnector.RedshiftClusterParameterGroupArgs;
import com.pulumi.azurenative.awsconnector.inputs.RedshiftClusterParameterGroupPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.AwsRedshiftClusterParameterGroupPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var redshiftClusterParameterGroup = new RedshiftClusterParameterGroup("redshiftClusterParameterGroup", RedshiftClusterParameterGroupArgs.builder()
.location("gskgxjliwptm")
.name("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])")
.properties(RedshiftClusterParameterGroupPropertiesArgs.builder()
.arn("whliokkrefhwytv")
.awsAccountId("fdljzalgig")
.awsProperties(AwsRedshiftClusterParameterGroupPropertiesArgs.builder()
.description("gvl")
.parameterGroupFamily("bbhnqerzrhqtinntphvuim")
.parameterGroupName("tiqxhqigpmuckmnpgijvnpwzb")
.parameters(ParameterArgs.builder()
.parameterName("jxeucnajvjzv")
.parameterValue("ubxmwmoxeslbruenu")
.build())
.tags(TagArgs.builder()
.key("ucdvfenzatoxmpdicwhztuvgtnku")
.value("qpznlj")
.build())
.build())
.awsRegion("wrhyhrmwhdmlnjjbrl")
.awsSourceSchema("nkdbqnqvsdnvogwatfxlubppr")
.awsTags(Map.of("key6090", "vaqtqamdjobsgwecpvyxeerjrrxac"))
.publicCloudConnectorsResourceId("nrs")
.publicCloudResourceName("xnrwtxesebdfzrqiamebczhoyjbqeq")
.build())
.resourceGroupName("rgredshiftClusterParameterGroup")
.tags(Map.of("key4322", "zjgvmwcimdtqwxhy"))
.build());
}
}
Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:awsconnector:RedshiftClusterParameterGroup jptweejzcgxaqbqtgwmij /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AwsConnector/redshiftClusterParameterGroups/{name}
Content copied to clipboard