Interface CfnDomainPropsMixin.ServiceSoftwareOptionsProperty

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

@Stability(Stable) public static interface CfnDomainPropsMixin.ServiceSoftwareOptionsProperty extends software.amazon.jsii.JsiiSerializable
The current status of the service software for an Amazon OpenSearch Service domain.

For more information, see Service software updates in Amazon OpenSearch Service .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.opensearchservice.mixins.*;
 ServiceSoftwareOptionsProperty serviceSoftwareOptionsProperty = ServiceSoftwareOptionsProperty.builder()
         .automatedUpdateDate("automatedUpdateDate")
         .cancellable(false)
         .currentVersion("currentVersion")
         .description("description")
         .newVersion("newVersion")
         .optionalDeployment(false)
         .updateAvailable(false)
         .updateStatus("updateStatus")
         .build();
 

See Also: