@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.554Z") @Stability(value=Stable) public interface CfnWorkgroupProps 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.redshiftserverless.*;
CfnWorkgroupProps cfnWorkgroupProps = CfnWorkgroupProps.builder()
.workgroupName("workgroupName")
// the properties below are optional
.baseCapacity(123)
.configParameters(List.of(ConfigParameterProperty.builder()
.parameterKey("parameterKey")
.parameterValue("parameterValue")
.build()))
.enhancedVpcRouting(false)
.namespaceName("namespaceName")
.publiclyAccessible(false)
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWorkgroupProps.Builder
A builder for
CfnWorkgroupProps |
static class |
CfnWorkgroupProps.Jsii$Proxy
An implementation for
CfnWorkgroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnWorkgroupProps.Builder |
builder() |
default Number |
getBaseCapacity()
`AWS::RedshiftServerless::Workgroup.BaseCapacity`.
|
default Object |
getConfigParameters()
`AWS::RedshiftServerless::Workgroup.ConfigParameters`.
|
default Object |
getEnhancedVpcRouting()
`AWS::RedshiftServerless::Workgroup.EnhancedVpcRouting`.
|
default String |
getNamespaceName()
`AWS::RedshiftServerless::Workgroup.NamespaceName`.
|
default Object |
getPubliclyAccessible()
`AWS::RedshiftServerless::Workgroup.PubliclyAccessible`.
|
default List<String> |
getSecurityGroupIds()
`AWS::RedshiftServerless::Workgroup.SecurityGroupIds`.
|
default List<String> |
getSubnetIds()
`AWS::RedshiftServerless::Workgroup.SubnetIds`.
|
default List<CfnTag> |
getTags()
`AWS::RedshiftServerless::Workgroup.Tags`.
|
String |
getWorkgroupName()
`AWS::RedshiftServerless::Workgroup.WorkgroupName`.
|
@Stability(value=Stable) @NotNull String getWorkgroupName()
@Stability(value=Stable) @Nullable default Number getBaseCapacity()
@Stability(value=Stable) @Nullable default Object getConfigParameters()
@Stability(value=Stable) @Nullable default Object getEnhancedVpcRouting()
@Stability(value=Stable) @Nullable default String getNamespaceName()
@Stability(value=Stable) @Nullable default Object getPubliclyAccessible()
@Stability(value=Stable) @Nullable default List<String> getSecurityGroupIds()
@Stability(value=Stable) @Nullable default List<String> getSubnetIds()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnWorkgroupProps.Builder builder()
CfnWorkgroupProps.Builder of CfnWorkgroupPropsCopyright © 2022. All rights reserved.