Struct aws_sdk_opensearch::operation::start_service_software_update::builders::StartServiceSoftwareUpdateInputBuilder
source · #[non_exhaustive]pub struct StartServiceSoftwareUpdateInputBuilder { /* private fields */ }
Expand description
A builder for StartServiceSoftwareUpdateInput
.
Implementations§
source§impl StartServiceSoftwareUpdateInputBuilder
impl StartServiceSoftwareUpdateInputBuilder
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
The name of the domain that you want to update to the latest service software.
This field is required.sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The name of the domain that you want to update to the latest service software.
sourcepub fn get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
The name of the domain that you want to update to the latest service software.
sourcepub fn schedule_at(self, input: ScheduleAt) -> Self
pub fn schedule_at(self, input: ScheduleAt) -> Self
When to start the service software update.
-
NOW
- Immediately schedules the update to happen in the current hour if there's capacity available. -
TIMESTAMP
- Lets you specify a custom date and time to apply the update. If you specify this value, you must also provide a value forDesiredStartTime
. -
OFF_PEAK_WINDOW
- Marks the update to be picked up during an upcoming off-peak window. There's no guarantee that the update will happen during the next immediate window. Depending on capacity, it might happen in subsequent days.
Default: NOW
if you don't specify a value for DesiredStartTime
, and TIMESTAMP
if you do.
sourcepub fn set_schedule_at(self, input: Option<ScheduleAt>) -> Self
pub fn set_schedule_at(self, input: Option<ScheduleAt>) -> Self
When to start the service software update.
-
NOW
- Immediately schedules the update to happen in the current hour if there's capacity available. -
TIMESTAMP
- Lets you specify a custom date and time to apply the update. If you specify this value, you must also provide a value forDesiredStartTime
. -
OFF_PEAK_WINDOW
- Marks the update to be picked up during an upcoming off-peak window. There's no guarantee that the update will happen during the next immediate window. Depending on capacity, it might happen in subsequent days.
Default: NOW
if you don't specify a value for DesiredStartTime
, and TIMESTAMP
if you do.
sourcepub fn get_schedule_at(&self) -> &Option<ScheduleAt>
pub fn get_schedule_at(&self) -> &Option<ScheduleAt>
When to start the service software update.
-
NOW
- Immediately schedules the update to happen in the current hour if there's capacity available. -
TIMESTAMP
- Lets you specify a custom date and time to apply the update. If you specify this value, you must also provide a value forDesiredStartTime
. -
OFF_PEAK_WINDOW
- Marks the update to be picked up during an upcoming off-peak window. There's no guarantee that the update will happen during the next immediate window. Depending on capacity, it might happen in subsequent days.
Default: NOW
if you don't specify a value for DesiredStartTime
, and TIMESTAMP
if you do.
sourcepub fn desired_start_time(self, input: i64) -> Self
pub fn desired_start_time(self, input: i64) -> Self
The Epoch timestamp when you want the service software update to start. You only need to specify this parameter if you set ScheduleAt
to TIMESTAMP
.
sourcepub fn set_desired_start_time(self, input: Option<i64>) -> Self
pub fn set_desired_start_time(self, input: Option<i64>) -> Self
The Epoch timestamp when you want the service software update to start. You only need to specify this parameter if you set ScheduleAt
to TIMESTAMP
.
sourcepub fn get_desired_start_time(&self) -> &Option<i64>
pub fn get_desired_start_time(&self) -> &Option<i64>
The Epoch timestamp when you want the service software update to start. You only need to specify this parameter if you set ScheduleAt
to TIMESTAMP
.
sourcepub fn build(self) -> Result<StartServiceSoftwareUpdateInput, BuildError>
pub fn build(self) -> Result<StartServiceSoftwareUpdateInput, BuildError>
Consumes the builder and constructs a StartServiceSoftwareUpdateInput
.
source§impl StartServiceSoftwareUpdateInputBuilder
impl StartServiceSoftwareUpdateInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<StartServiceSoftwareUpdateOutput, SdkError<StartServiceSoftwareUpdateError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<StartServiceSoftwareUpdateOutput, SdkError<StartServiceSoftwareUpdateError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartServiceSoftwareUpdateInputBuilder
impl Clone for StartServiceSoftwareUpdateInputBuilder
source§fn clone(&self) -> StartServiceSoftwareUpdateInputBuilder
fn clone(&self) -> StartServiceSoftwareUpdateInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for StartServiceSoftwareUpdateInputBuilder
impl Default for StartServiceSoftwareUpdateInputBuilder
source§fn default() -> StartServiceSoftwareUpdateInputBuilder
fn default() -> StartServiceSoftwareUpdateInputBuilder
source§impl PartialEq for StartServiceSoftwareUpdateInputBuilder
impl PartialEq for StartServiceSoftwareUpdateInputBuilder
source§fn eq(&self, other: &StartServiceSoftwareUpdateInputBuilder) -> bool
fn eq(&self, other: &StartServiceSoftwareUpdateInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.