Interface CfnNamedQueryProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNamedQueryProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.775Z")
@Stability(Stable)
public interface CfnNamedQueryProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnNamedQuery.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNamedQueryPropsstatic final classAn implementation forCfnNamedQueryProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnNamedQueryProps.Builderbuilder()The database to which the query belongs.default StringThe query description.default StringgetName()The query name.The SQL statements that make up the query.default StringThe name of the workgroup that contains the named query.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabase
The database to which the query belongs. -
getQueryString
The SQL statements that make up the query. -
getDescription
The query description. -
getName
The query name. -
getWorkGroup
The name of the workgroup that contains the named query. -
builder
- Returns:
- a
CfnNamedQueryProps.BuilderofCfnNamedQueryProps
-