Class: Aws::Pipes::Types::PipeTargetRedshiftDataParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::PipeTargetRedshiftDataParameters
- Defined in:
- gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb
Overview
These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API BatchExecuteStatement.
Constant Summary collapse
- SENSITIVE =
[:database, :db_user, :statement_name, :sqls]
Instance Attribute Summary collapse
-
#database ⇒ String
The name of the database.
-
#db_user ⇒ String
The database user name.
-
#secret_manager_arn ⇒ String
The name or ARN of the secret that enables access to the database.
-
#sqls ⇒ Array<String>
The SQL statement text to run.
-
#statement_name ⇒ String
The name of the SQL statement.
-
#with_event ⇒ Boolean
Indicates whether to send an event back to EventBridge after the SQL statement runs.
Instance Attribute Details
#database ⇒ String
The name of the database. Required when authenticating using temporary credentials.
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2565 class PipeTargetRedshiftDataParameters < Struct.new( :secret_manager_arn, :database, :db_user, :statement_name, :with_event, :sqls) SENSITIVE = [:database, :db_user, :statement_name, :sqls] include Aws::Structure end |
#db_user ⇒ String
The database user name. Required when authenticating using temporary credentials.
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2565 class PipeTargetRedshiftDataParameters < Struct.new( :secret_manager_arn, :database, :db_user, :statement_name, :with_event, :sqls) SENSITIVE = [:database, :db_user, :statement_name, :sqls] include Aws::Structure end |
#secret_manager_arn ⇒ String
The name or ARN of the secret that enables access to the database. Required when authenticating using Secrets Manager.
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2565 class PipeTargetRedshiftDataParameters < Struct.new( :secret_manager_arn, :database, :db_user, :statement_name, :with_event, :sqls) SENSITIVE = [:database, :db_user, :statement_name, :sqls] include Aws::Structure end |
#sqls ⇒ Array<String>
The SQL statement text to run.
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2565 class PipeTargetRedshiftDataParameters < Struct.new( :secret_manager_arn, :database, :db_user, :statement_name, :with_event, :sqls) SENSITIVE = [:database, :db_user, :statement_name, :sqls] include Aws::Structure end |
#statement_name ⇒ String
The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2565 class PipeTargetRedshiftDataParameters < Struct.new( :secret_manager_arn, :database, :db_user, :statement_name, :with_event, :sqls) SENSITIVE = [:database, :db_user, :statement_name, :sqls] include Aws::Structure end |
#with_event ⇒ Boolean
Indicates whether to send an event back to EventBridge after the SQL statement runs.
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 |
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 2565 class PipeTargetRedshiftDataParameters < Struct.new( :secret_manager_arn, :database, :db_user, :statement_name, :with_event, :sqls) SENSITIVE = [:database, :db_user, :statement_name, :sqls] include Aws::Structure end |