public static interface SnapshotOptionsStatus.Builder extends CopyableBuilder<SnapshotOptionsStatus.Builder,SnapshotOptionsStatus>
Modifier and Type | Method and Description |
---|---|
default SnapshotOptionsStatus.Builder |
options(Consumer<SnapshotOptions.Builder> options)
Specifies the daily snapshot options specified for the Elasticsearch domain.
|
SnapshotOptionsStatus.Builder |
options(SnapshotOptions options)
Specifies the daily snapshot options specified for the Elasticsearch domain.
|
default SnapshotOptionsStatus.Builder |
status(Consumer<OptionStatus.Builder> status)
Specifies the status of a daily automated snapshot.
|
SnapshotOptionsStatus.Builder |
status(OptionStatus status)
Specifies the status of a daily automated snapshot.
|
copy
applyMutation, build
SnapshotOptionsStatus.Builder options(SnapshotOptions options)
Specifies the daily snapshot options specified for the Elasticsearch domain.
options
- Specifies the daily snapshot options specified for the Elasticsearch domain.default SnapshotOptionsStatus.Builder options(Consumer<SnapshotOptions.Builder> options)
Specifies the daily snapshot options specified for the Elasticsearch domain.
This is a convenience that creates an instance of theSnapshotOptions.Builder
avoiding the need to
create one manually via SnapshotOptions.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to options(SnapshotOptions)
.options
- a consumer that will call methods on SnapshotOptions.Builder
options(SnapshotOptions)
SnapshotOptionsStatus.Builder status(OptionStatus status)
Specifies the status of a daily automated snapshot.
status
- Specifies the status of a daily automated snapshot.default SnapshotOptionsStatus.Builder status(Consumer<OptionStatus.Builder> status)
Specifies the status of a daily automated snapshot.
This is a convenience that creates an instance of theOptionStatus.Builder
avoiding the need to
create one manually via OptionStatus.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to status(OptionStatus)
.status
- a consumer that will call methods on OptionStatus.Builder
status(OptionStatus)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.