#[non_exhaustive]pub struct PauseServiceOutputBuilder { /* private fields */ }
Expand description
A builder for PauseServiceOutput
.
Implementations§
source§impl PauseServiceOutputBuilder
impl PauseServiceOutputBuilder
sourcepub fn service(self, input: Service) -> Self
pub fn service(self, input: Service) -> Self
A description of the App Runner service that this request just paused.
sourcepub fn set_service(self, input: Option<Service>) -> Self
pub fn set_service(self, input: Option<Service>) -> Self
A description of the App Runner service that this request just paused.
sourcepub fn operation_id(self, input: impl Into<String>) -> Self
pub fn operation_id(self, input: impl Into<String>) -> Self
The unique ID of the asynchronous operation that this request started. You can use it combined with the ListOperations
call to track the operation's progress.
sourcepub fn set_operation_id(self, input: Option<String>) -> Self
pub fn set_operation_id(self, input: Option<String>) -> Self
The unique ID of the asynchronous operation that this request started. You can use it combined with the ListOperations
call to track the operation's progress.
sourcepub fn build(self) -> PauseServiceOutput
pub fn build(self) -> PauseServiceOutput
Consumes the builder and constructs a PauseServiceOutput
.
Trait Implementations§
source§impl Clone for PauseServiceOutputBuilder
impl Clone for PauseServiceOutputBuilder
source§fn clone(&self) -> PauseServiceOutputBuilder
fn clone(&self) -> PauseServiceOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PauseServiceOutputBuilder
impl Debug for PauseServiceOutputBuilder
source§impl Default for PauseServiceOutputBuilder
impl Default for PauseServiceOutputBuilder
source§fn default() -> PauseServiceOutputBuilder
fn default() -> PauseServiceOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PauseServiceOutputBuilder> for PauseServiceOutputBuilder
impl PartialEq<PauseServiceOutputBuilder> for PauseServiceOutputBuilder
source§fn eq(&self, other: &PauseServiceOutputBuilder) -> bool
fn eq(&self, other: &PauseServiceOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.