aws.redshiftdata.Statement
Explore with Pulumi AI
Executes a Redshift Data Statement.
Example Usage
cluster_identifier
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.redshiftdata.Statement("example", {
clusterIdentifier: exampleAwsRedshiftCluster.clusterIdentifier,
database: exampleAwsRedshiftCluster.databaseName,
dbUser: exampleAwsRedshiftCluster.masterUsername,
sql: "CREATE GROUP group_name;",
});
import pulumi
import pulumi_aws as aws
example = aws.redshiftdata.Statement("example",
cluster_identifier=example_aws_redshift_cluster["clusterIdentifier"],
database=example_aws_redshift_cluster["databaseName"],
db_user=example_aws_redshift_cluster["masterUsername"],
sql="CREATE GROUP group_name;")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/redshiftdata"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := redshiftdata.NewStatement(ctx, "example", &redshiftdata.StatementArgs{
ClusterIdentifier: pulumi.Any(exampleAwsRedshiftCluster.ClusterIdentifier),
Database: pulumi.Any(exampleAwsRedshiftCluster.DatabaseName),
DbUser: pulumi.Any(exampleAwsRedshiftCluster.MasterUsername),
Sql: pulumi.String("CREATE GROUP group_name;"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.RedshiftData.Statement("example", new()
{
ClusterIdentifier = exampleAwsRedshiftCluster.ClusterIdentifier,
Database = exampleAwsRedshiftCluster.DatabaseName,
DbUser = exampleAwsRedshiftCluster.MasterUsername,
Sql = "CREATE GROUP group_name;",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.redshiftdata.Statement;
import com.pulumi.aws.redshiftdata.StatementArgs;
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 example = new Statement("example", StatementArgs.builder()
.clusterIdentifier(exampleAwsRedshiftCluster.clusterIdentifier())
.database(exampleAwsRedshiftCluster.databaseName())
.dbUser(exampleAwsRedshiftCluster.masterUsername())
.sql("CREATE GROUP group_name;")
.build());
}
}
resources:
example:
type: aws:redshiftdata:Statement
properties:
clusterIdentifier: ${exampleAwsRedshiftCluster.clusterIdentifier}
database: ${exampleAwsRedshiftCluster.databaseName}
dbUser: ${exampleAwsRedshiftCluster.masterUsername}
sql: CREATE GROUP group_name;
workgroup_name
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.redshiftdata.Statement("example", {
workgroupName: exampleAwsRedshiftserverlessWorkgroup.workgroupName,
database: "dev",
sql: "CREATE GROUP group_name;",
});
import pulumi
import pulumi_aws as aws
example = aws.redshiftdata.Statement("example",
workgroup_name=example_aws_redshiftserverless_workgroup["workgroupName"],
database="dev",
sql="CREATE GROUP group_name;")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/redshiftdata"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := redshiftdata.NewStatement(ctx, "example", &redshiftdata.StatementArgs{
WorkgroupName: pulumi.Any(exampleAwsRedshiftserverlessWorkgroup.WorkgroupName),
Database: pulumi.String("dev"),
Sql: pulumi.String("CREATE GROUP group_name;"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.RedshiftData.Statement("example", new()
{
WorkgroupName = exampleAwsRedshiftserverlessWorkgroup.WorkgroupName,
Database = "dev",
Sql = "CREATE GROUP group_name;",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.redshiftdata.Statement;
import com.pulumi.aws.redshiftdata.StatementArgs;
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 example = new Statement("example", StatementArgs.builder()
.workgroupName(exampleAwsRedshiftserverlessWorkgroup.workgroupName())
.database("dev")
.sql("CREATE GROUP group_name;")
.build());
}
}
resources:
example:
type: aws:redshiftdata:Statement
properties:
workgroupName: ${exampleAwsRedshiftserverlessWorkgroup.workgroupName}
database: dev
sql: CREATE GROUP group_name;
Create Statement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Statement(name: string, args: StatementArgs, opts?: CustomResourceOptions);
@overload
def Statement(resource_name: str,
args: StatementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Statement(resource_name: str,
opts: Optional[ResourceOptions] = None,
database: Optional[str] = None,
sql: Optional[str] = None,
cluster_identifier: Optional[str] = None,
db_user: Optional[str] = None,
parameters: Optional[Sequence[StatementParameterArgs]] = None,
secret_arn: Optional[str] = None,
statement_name: Optional[str] = None,
with_event: Optional[bool] = None,
workgroup_name: Optional[str] = None)
func NewStatement(ctx *Context, name string, args StatementArgs, opts ...ResourceOption) (*Statement, error)
public Statement(string name, StatementArgs args, CustomResourceOptions? opts = null)
public Statement(String name, StatementArgs args)
public Statement(String name, StatementArgs args, CustomResourceOptions options)
type: aws:redshiftdata:Statement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. StatementArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. StatementArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. StatementArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. StatementArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. StatementArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var statementResource = new Aws.RedshiftData.Statement("statementResource", new()
{
Database = "string",
Sql = "string",
ClusterIdentifier = "string",
DbUser = "string",
Parameters = new[]
{
new Aws.RedshiftData.Inputs.StatementParameterArgs
{
Name = "string",
Value = "string",
},
},
SecretArn = "string",
StatementName = "string",
WithEvent = false,
WorkgroupName = "string",
});
example, err := redshiftdata.NewStatement(ctx, "statementResource", &redshiftdata.StatementArgs{
Database: pulumi.String("string"),
Sql: pulumi.String("string"),
ClusterIdentifier: pulumi.String("string"),
DbUser: pulumi.String("string"),
Parameters: redshiftdata.StatementParameterArray{
&redshiftdata.StatementParameterArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
SecretArn: pulumi.String("string"),
StatementName: pulumi.String("string"),
WithEvent: pulumi.Bool(false),
WorkgroupName: pulumi.String("string"),
})
var statementResource = new Statement("statementResource", StatementArgs.builder()
.database("string")
.sql("string")
.clusterIdentifier("string")
.dbUser("string")
.parameters(StatementParameterArgs.builder()
.name("string")
.value("string")
.build())
.secretArn("string")
.statementName("string")
.withEvent(false)
.workgroupName("string")
.build());
statement_resource = aws.redshiftdata.Statement("statementResource",
database="string",
sql="string",
cluster_identifier="string",
db_user="string",
parameters=[{
"name": "string",
"value": "string",
}],
secret_arn="string",
statement_name="string",
with_event=False,
workgroup_name="string")
const statementResource = new aws.redshiftdata.Statement("statementResource", {
database: "string",
sql: "string",
clusterIdentifier: "string",
dbUser: "string",
parameters: [{
name: "string",
value: "string",
}],
secretArn: "string",
statementName: "string",
withEvent: false,
workgroupName: "string",
});
type: aws:redshiftdata:Statement
properties:
clusterIdentifier: string
database: string
dbUser: string
parameters:
- name: string
value: string
secretArn: string
sql: string
statementName: string
withEvent: false
workgroupName: string
Statement Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Statement resource accepts the following input properties:
- Database
This property is required. Changes to this property will trigger replacement.
- The name of the database.
- Sql
This property is required. Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- Cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- Db
User Changes to this property will trigger replacement.
- The database user name.
- Parameters
Changes to this property will trigger replacement.
Parameter> - Secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- Statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- With
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- Workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- Database
This property is required. Changes to this property will trigger replacement.
- The name of the database.
- Sql
This property is required. Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- Cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- Db
User Changes to this property will trigger replacement.
- The database user name.
- Parameters
Changes to this property will trigger replacement.
Parameter Args - Secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- Statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- With
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- Workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- database
This property is required. Changes to this property will trigger replacement.
- The name of the database.
- sql
This property is required. Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- db
User Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
Parameter> - secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- database
This property is required. Changes to this property will trigger replacement.
- The name of the database.
- sql
This property is required. Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- db
User Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
Parameter[] - secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- database
This property is required. Changes to this property will trigger replacement.
- The name of the database.
- sql
This property is required. Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- cluster_
identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- db_
user Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
Parameter Args] - secret_
arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- statement_
name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with_
event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup_
name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- database
This property is required. Changes to this property will trigger replacement.
- The name of the database.
- sql
This property is required. Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- db
User Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
- secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
Outputs
All input properties are implicitly available as output properties. Additionally, the Statement resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Statement Resource
Get an existing Statement resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: StatementState, opts?: CustomResourceOptions): Statement
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_identifier: Optional[str] = None,
database: Optional[str] = None,
db_user: Optional[str] = None,
parameters: Optional[Sequence[StatementParameterArgs]] = None,
secret_arn: Optional[str] = None,
sql: Optional[str] = None,
statement_name: Optional[str] = None,
with_event: Optional[bool] = None,
workgroup_name: Optional[str] = None) -> Statement
func GetStatement(ctx *Context, name string, id IDInput, state *StatementState, opts ...ResourceOption) (*Statement, error)
public static Statement Get(string name, Input<string> id, StatementState? state, CustomResourceOptions? opts = null)
public static Statement get(String name, Output<String> id, StatementState state, CustomResourceOptions options)
resources: _: type: aws:redshiftdata:Statement get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- Database
Changes to this property will trigger replacement.
- The name of the database.
- Db
User Changes to this property will trigger replacement.
- The database user name.
- Parameters
Changes to this property will trigger replacement.
Parameter> - Secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- Sql
Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- Statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- With
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- Workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- Cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- Database
Changes to this property will trigger replacement.
- The name of the database.
- Db
User Changes to this property will trigger replacement.
- The database user name.
- Parameters
Changes to this property will trigger replacement.
Parameter Args - Secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- Sql
Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- Statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- With
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- Workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- database
Changes to this property will trigger replacement.
- The name of the database.
- db
User Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
Parameter> - secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- sql
Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- database
Changes to this property will trigger replacement.
- The name of the database.
- db
User Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
Parameter[] - secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- sql
Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- cluster_
identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- database
Changes to this property will trigger replacement.
- The name of the database.
- db_
user Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
Parameter Args] - secret_
arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- sql
Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- statement_
name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with_
event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup_
name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
- cluster
Identifier Changes to this property will trigger replacement.
- The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- database
Changes to this property will trigger replacement.
- The name of the database.
- db
User Changes to this property will trigger replacement.
- The database user name.
- parameters
Changes to this property will trigger replacement.
- secret
Arn Changes to this property will trigger replacement.
- The name or ARN of the secret that enables access to the database.
- sql
Changes to this property will trigger replacement.
The SQL statement text to run.
The following arguments are optional:
- statement
Name Changes to this property will trigger replacement.
- The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with
Event Changes to this property will trigger replacement.
- A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- workgroup
Name Changes to this property will trigger replacement.
- The serverless workgroup name. This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
Supporting Types
StatementParameter, StatementParameterArgs
Import
Using pulumi import
, import Redshift Data Statements using the id
. For example:
$ pulumi import aws:redshiftdata/statement:Statement example example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.