Interface CfnDomain.ServiceSoftwareOptionsProperty

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

@Stability(Stable) public static interface CfnDomain.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.services.opensearchservice.*;
 ServiceSoftwareOptionsProperty serviceSoftwareOptionsProperty = ServiceSoftwareOptionsProperty.builder()
         .automatedUpdateDate("automatedUpdateDate")
         .cancellable(false)
         .currentVersion("currentVersion")
         .description("description")
         .newVersion("newVersion")
         .optionalDeployment(false)
         .updateAvailable(false)
         .updateStatus("updateStatus")
         .build();
 

See Also: