Description Usage Arguments References Examples
Create a named query.
1 2 3 4 |
name |
plain language name for the query |
description |
brief explanation of the query |
query |
text of the query itself. In other words, all query statements |
database |
database to which the query belongs |
client_request_token |
unique case-sensitive string used to ensure the
request to create the query is idempotent (executes only once). If another
|
aws_access_key_id |
AWS access key id |
aws_secret_access_key |
AWS secret access key |
aws_session_token |
AWS session token |
region_name |
region name |
profile_name |
profile name |
1 2 3 4 5 6 7 8 9 | ## Not run:
create_named_query(
name = "elb100",
description = "100 rows from elb_logs",
query = "SELECT * FROM elb_logs LIMIT 100",
database = "sampledb"
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.