Interface CfnNamedQueryProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNamedQueryProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:04.544Z")
@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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnNamedQueryProps
static final class
An implementation forCfnNamedQueryProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnNamedQueryProps.Builder
builder()
The database to which the query belongs.default String
The query description.default String
getName()
The query name.The SQL statements that make up the query.default String
The 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.- See Also:
-
getQueryString
The SQL statements that make up the query.- See Also:
-
getDescription
The query description.- See Also:
-
getName
The query name.- See Also:
-
getWorkGroup
The name of the workgroup that contains the named query.- See Also:
-
builder
- Returns:
- a
CfnNamedQueryProps.Builder
ofCfnNamedQueryProps
-