@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.693Z") @Stability(value=Stable) public interface CfnNamedQueryProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.athena.*;
CfnNamedQueryProps cfnNamedQueryProps = CfnNamedQueryProps.builder()
.database("database")
.queryString("queryString")
// the properties below are optional
.description("description")
.name("name")
.workGroup("workGroup")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnNamedQueryProps.Builder
A builder for
CfnNamedQueryProps |
static class |
CfnNamedQueryProps.Jsii$Proxy
An implementation for
CfnNamedQueryProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnNamedQueryProps.Builder |
builder() |
String |
getDatabase()
The database to which the query belongs.
|
default String |
getDescription()
The query description.
|
default String |
getName()
The query name.
|
String |
getQueryString()
The SQL statements that make up the query.
|
default String |
getWorkGroup()
The name of the workgroup that contains the named query.
|
@Stability(value=Stable) @NotNull String getDatabase()
@Stability(value=Stable) @NotNull String getQueryString()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getWorkGroup()
@Stability(value=Stable) static CfnNamedQueryProps.Builder builder()
CfnNamedQueryProps.Builder of CfnNamedQueryPropsCopyright © 2022. All rights reserved.