Interface CfnRouterOutput.MaintenanceConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterOutput.MaintenanceConfigurationProperty 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.mediaconnect.*;
 Object default_;
 MaintenanceConfigurationProperty maintenanceConfigurationProperty = MaintenanceConfigurationProperty.builder()
         .default(default_)
         .preferredDayTime(PreferredDayTimeMaintenanceConfigurationProperty.builder()
                 .day("day")
                 .time("time")
                 .build())
         .build();
 

See Also: