Class CfnDomainPropsMixin.ServiceSoftwareOptionsProperty
The current status of the service software for an Amazon OpenSearch Service domain.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDomainPropsMixin.ServiceSoftwareOptionsProperty : CfnDomainPropsMixin.IServiceSoftwareOptionsProperty
Syntax (vb)
Public Class CfnDomainPropsMixin.ServiceSoftwareOptionsProperty Implements CfnDomainPropsMixin.IServiceSoftwareOptionsProperty
Remarks
For more information, see Service software updates in Amazon OpenSearch Service .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService;
var serviceSoftwareOptionsProperty = new ServiceSoftwareOptionsProperty {
AutomatedUpdateDate = "automatedUpdateDate",
Cancellable = false,
CurrentVersion = "currentVersion",
Description = "description",
NewVersion = "newVersion",
OptionalDeployment = false,
UpdateAvailable = false,
UpdateStatus = "updateStatus"
};
Synopsis
Constructors
| ServiceSoftwareOptionsProperty() | The current status of the service software for an Amazon OpenSearch Service domain. |
Properties
| AutomatedUpdateDate | The timestamp, in Epoch time, until which you can manually request a service software update. |
| Cancellable | True if you're able to cancel your service software version update. |
| CurrentVersion | The current service software version present on the domain. |
| Description | A description of the service software update status. |
| NewVersion | The new service software version, if one is available. |
| OptionalDeployment | True if a service software is never automatically updated. |
| UpdateAvailable | True if you're able to update your service software version. |
| UpdateStatus | The status of your service software update. |
Constructors
ServiceSoftwareOptionsProperty()
The current status of the service software for an Amazon OpenSearch Service domain.
public ServiceSoftwareOptionsProperty()
Remarks
For more information, see Service software updates in Amazon OpenSearch Service .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService;
var serviceSoftwareOptionsProperty = new ServiceSoftwareOptionsProperty {
AutomatedUpdateDate = "automatedUpdateDate",
Cancellable = false,
CurrentVersion = "currentVersion",
Description = "description",
NewVersion = "newVersion",
OptionalDeployment = false,
UpdateAvailable = false,
UpdateStatus = "updateStatus"
};
Properties
AutomatedUpdateDate
The timestamp, in Epoch time, until which you can manually request a service software update.
public string? AutomatedUpdateDate { get; set; }
Property Value
Remarks
After this date, we automatically update your service software.
Cancellable
True if you're able to cancel your service software version update.
public object? Cancellable { get; set; }
Property Value
Remarks
False if you can't cancel your service software update.
Type union: either bool or IResolvable
CurrentVersion
The current service software version present on the domain.
public string? CurrentVersion { get; set; }
Property Value
Remarks
Description
A description of the service software update status.
public string? Description { get; set; }
Property Value
Remarks
NewVersion
The new service software version, if one is available.
public string? NewVersion { get; set; }
Property Value
Remarks
OptionalDeployment
True if a service software is never automatically updated.
public object? OptionalDeployment { get; set; }
Property Value
Remarks
False if a service software is automatically updated after the automated update date.
Type union: either bool or IResolvable
UpdateAvailable
True if you're able to update your service software version.
public object? UpdateAvailable { get; set; }
Property Value
Remarks
False if you can't update your service software version.
Type union: either bool or IResolvable
UpdateStatus
The status of your service software update.
public string? UpdateStatus { get; set; }