Interface CfnWorkspaceMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkspaceMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.042Z") @Stability(Stable) public interface CfnWorkspaceMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnWorkspacePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.aps.*;
 CfnWorkspaceMixinProps cfnWorkspaceMixinProps = CfnWorkspaceMixinProps.builder()
         .alertManagerDefinition("alertManagerDefinition")
         .alias("alias")
         .kmsKeyArn("kmsKeyArn")
         .loggingConfiguration(LoggingConfigurationProperty.builder()
                 .logGroupArn("logGroupArn")
                 .build())
         .queryLoggingConfiguration(QueryLoggingConfigurationProperty.builder()
                 .destinations(List.of(LoggingDestinationProperty.builder()
                         .cloudWatchLogs(CloudWatchLogDestinationProperty.builder()
                                 .logGroupArn("logGroupArn")
                                 .build())
                         .filters(LoggingFilterProperty.builder()
                                 .qspThreshold(123)
                                 .build())
                         .build()))
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .workspaceConfiguration(WorkspaceConfigurationProperty.builder()
                 .limitsPerLabelSets(List.of(LimitsPerLabelSetProperty.builder()
                         .labelSet(List.of(LabelProperty.builder()
                                 .name("name")
                                 .value("value")
                                 .build()))
                         .limits(LimitsPerLabelSetEntryProperty.builder()
                                 .maxSeries(123)
                                 .build())
                         .build()))
                 .retentionPeriodInDays(123)
                 .build())
         .build();
 

See Also: