|
304 | 304 | "shape":"UUID",
|
305 | 305 | "documentation":"<p>The identifier of the SQL statement described. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. </p>"
|
306 | 306 | },
|
| 307 | + "QueryParameters":{ |
| 308 | + "shape":"SqlParametersList", |
| 309 | + "documentation":"<p>The parameters for the SQL statement.</p>" |
| 310 | + }, |
307 | 311 | "QueryString":{
|
308 | 312 | "shape":"StatementString",
|
309 | 313 | "documentation":"<p>The SQL statement text. </p>"
|
|
439 | 443 | "shape":"String",
|
440 | 444 | "documentation":"<p>The database user name. This parameter is required when authenticating using temporary credentials. </p>"
|
441 | 445 | },
|
| 446 | + "Parameters":{ |
| 447 | + "shape":"SqlParametersList", |
| 448 | + "documentation":"<p>The parameters for the SQL statement.</p>" |
| 449 | + }, |
442 | 450 | "SecretArn":{
|
443 | 451 | "shape":"SecretArn",
|
444 | 452 | "documentation":"<p>The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using AWS Secrets Manager. </p>"
|
|
777 | 785 | "max":1000,
|
778 | 786 | "min":0
|
779 | 787 | },
|
| 788 | + "ParameterName":{ |
| 789 | + "type":"string", |
| 790 | + "pattern":"^[0-9a-zA-Z_]+$" |
| 791 | + }, |
| 792 | + "ParameterValue":{ |
| 793 | + "type":"string", |
| 794 | + "min":1 |
| 795 | + }, |
780 | 796 | "ResourceNotFoundException":{
|
781 | 797 | "type":"structure",
|
782 | 798 | "required":[
|
|
801 | 817 | "member":{"shape":"String"}
|
802 | 818 | },
|
803 | 819 | "SecretArn":{"type":"string"},
|
| 820 | + "SqlParameter":{ |
| 821 | + "type":"structure", |
| 822 | + "required":[ |
| 823 | + "name", |
| 824 | + "value" |
| 825 | + ], |
| 826 | + "members":{ |
| 827 | + "name":{ |
| 828 | + "shape":"ParameterName", |
| 829 | + "documentation":"<p>The name of the parameter.</p>" |
| 830 | + }, |
| 831 | + "value":{ |
| 832 | + "shape":"ParameterValue", |
| 833 | + "documentation":"<p>The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more inforation, see <a href=\"https://docs.aws.amazon.com/redshift/latest/dg/c_Supported_data_types.html\">Data types</a> in the <i>Amazon Redshift Database Developer Guide</i>. </p>" |
| 834 | + } |
| 835 | + }, |
| 836 | + "documentation":"<p>A parameter used in a SQL statement.</p>" |
| 837 | + }, |
| 838 | + "SqlParametersList":{ |
| 839 | + "type":"list", |
| 840 | + "member":{"shape":"SqlParameter"}, |
| 841 | + "min":1 |
| 842 | + }, |
804 | 843 | "SqlRecords":{
|
805 | 844 | "type":"list",
|
806 | 845 | "member":{"shape":"FieldList"}
|
|
817 | 856 | "shape":"UUID",
|
818 | 857 | "documentation":"<p>The SQL statement identifier. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. </p>"
|
819 | 858 | },
|
| 859 | + "QueryParameters":{ |
| 860 | + "shape":"SqlParametersList", |
| 861 | + "documentation":"<p>The parameters used in a SQL statement.</p>" |
| 862 | + }, |
820 | 863 | "QueryString":{
|
821 | 864 | "shape":"StatementString",
|
822 | 865 | "documentation":"<p>The SQL statement.</p>"
|
|
0 commit comments