interface AutomatedSnapshotPauseOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpenSearchService.CfnDomain.AutomatedSnapshotPauseOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#CfnDomain_AutomatedSnapshotPauseOptionsProperty |
Java | software.amazon.awscdk.services.opensearchservice.CfnDomain.AutomatedSnapshotPauseOptionsProperty |
Python | aws_cdk.aws_opensearchservice.CfnDomain.AutomatedSnapshotPauseOptionsProperty |
TypeScript | aws-cdk-lib » aws_opensearchservice » CfnDomain » AutomatedSnapshotPauseOptionsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as opensearchservice } from 'aws-cdk-lib';
const automatedSnapshotPauseOptionsProperty: opensearchservice.CfnDomain.AutomatedSnapshotPauseOptionsProperty = {
enabled: false,
// the properties below are optional
endTime: 'endTime',
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | |
| end | string | |
| start | string |
enabled
Type:
boolean | IResolvable
endTime?
Type:
string
(optional)
startTime?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript