@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.737Z") @Stability(value=Stable) public interface CfnStoredQueryProps 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.config.*;
CfnStoredQueryProps cfnStoredQueryProps = CfnStoredQueryProps.builder()
.queryExpression("queryExpression")
.queryName("queryName")
// the properties below are optional
.queryDescription("queryDescription")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStoredQueryProps.Builder
A builder for
CfnStoredQueryProps |
static class |
CfnStoredQueryProps.Jsii$Proxy
An implementation for
CfnStoredQueryProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStoredQueryProps.Builder |
builder() |
default String |
getQueryDescription()
A unique description for the query.
|
String |
getQueryExpression()
The expression of the query.
|
String |
getQueryName()
The name of the query.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getQueryExpression()
For example, SELECT resourceId, resourceType, supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status = 'Off'.
@Stability(value=Stable) @NotNull String getQueryName()
@Stability(value=Stable) @Nullable default String getQueryDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnStoredQueryProps.Builder builder()
CfnStoredQueryProps.Builder of CfnStoredQueryPropsCopyright © 2022. All rights reserved.