Interface CfnWorkgroup.WorkgroupProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkgroup.WorkgroupProperty.Jsii$Proxy
Enclosing class:
CfnWorkgroup

@Stability(Stable) public static interface CfnWorkgroup.WorkgroupProperty extends software.amazon.jsii.JsiiSerializable
The collection of computing resources from which an endpoint is created.

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.*;
 WorkgroupProperty workgroupProperty = WorkgroupProperty.builder()
         .baseCapacity(123)
         .configParameters(List.of(ConfigParameterProperty.builder()
                 .parameterKey("parameterKey")
                 .parameterValue("parameterValue")
                 .build()))
         .creationDate("creationDate")
         .endpoint(EndpointProperty.builder()
                 .address("address")
                 .port(123)
                 .vpcEndpoints(List.of(VpcEndpointProperty.builder()
                         .networkInterfaces(List.of(NetworkInterfaceProperty.builder()
                                 .availabilityZone("availabilityZone")
                                 .networkInterfaceId("networkInterfaceId")
                                 .privateIpAddress("privateIpAddress")
                                 .subnetId("subnetId")
                                 .build()))
                         .vpcEndpointId("vpcEndpointId")
                         .vpcId("vpcId")
                         .build()))
                 .build())
         .enhancedVpcRouting(false)
         .maxCapacity(123)
         .namespaceName("namespaceName")
         .publiclyAccessible(false)
         .securityGroupIds(List.of("securityGroupIds"))
         .status("status")
         .subnetIds(List.of("subnetIds"))
         .workgroupArn("workgroupArn")
         .workgroupId("workgroupId")
         .workgroupName("workgroupName")
         .build();
 

See Also: