Interface CfnEnvironmentProps

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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-25T14:21:25.148Z") @Stability(Stable) public interface CfnEnvironmentProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnEnvironment.

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.workspacesthinclient.*;
 CfnEnvironmentProps cfnEnvironmentProps = CfnEnvironmentProps.builder()
         .desktopArn("desktopArn")
         // the properties below are optional
         .desiredSoftwareSetId("desiredSoftwareSetId")
         .desktopEndpoint("desktopEndpoint")
         .deviceCreationTags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .kmsKeyArn("kmsKeyArn")
         .maintenanceWindow(MaintenanceWindowProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .applyTimeOf("applyTimeOf")
                 .daysOfTheWeek(List.of("daysOfTheWeek"))
                 .endTimeHour(123)
                 .endTimeMinute(123)
                 .startTimeHour(123)
                 .startTimeMinute(123)
                 .build())
         .name("name")
         .softwareSetUpdateMode("softwareSetUpdateMode")
         .softwareSetUpdateSchedule("softwareSetUpdateSchedule")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: