Struct aws_sdk_migrationhubrefactorspaces::operation::delete_service::builders::DeleteServiceOutputBuilder
source · #[non_exhaustive]pub struct DeleteServiceOutputBuilder { /* private fields */ }Expand description
A builder for DeleteServiceOutput.
Implementations§
source§impl DeleteServiceOutputBuilder
impl DeleteServiceOutputBuilder
sourcepub fn service_id(self, input: impl Into<String>) -> Self
pub fn service_id(self, input: impl Into<String>) -> Self
The unique identifier of the service.
sourcepub fn set_service_id(self, input: Option<String>) -> Self
pub fn set_service_id(self, input: Option<String>) -> Self
The unique identifier of the service.
sourcepub fn get_service_id(&self) -> &Option<String>
pub fn get_service_id(&self) -> &Option<String>
The unique identifier of the service.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the service.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the service.
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
The unique identifier of the environment.
sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
The unique identifier of the environment.
sourcepub fn get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
The unique identifier of the environment.
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The ID of the application that the service is in.
sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The ID of the application that the service is in.
sourcepub fn get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
The ID of the application that the service is in.
sourcepub fn state(self, input: ServiceState) -> Self
pub fn state(self, input: ServiceState) -> Self
The current state of the service.
sourcepub fn set_state(self, input: Option<ServiceState>) -> Self
pub fn set_state(self, input: Option<ServiceState>) -> Self
The current state of the service.
sourcepub fn get_state(&self) -> &Option<ServiceState>
pub fn get_state(&self) -> &Option<ServiceState>
The current state of the service.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
A timestamp that indicates when the service was last updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
A timestamp that indicates when the service was last updated.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
A timestamp that indicates when the service was last updated.
sourcepub fn build(self) -> DeleteServiceOutput
pub fn build(self) -> DeleteServiceOutput
Consumes the builder and constructs a DeleteServiceOutput.
Trait Implementations§
source§impl Clone for DeleteServiceOutputBuilder
impl Clone for DeleteServiceOutputBuilder
source§fn clone(&self) -> DeleteServiceOutputBuilder
fn clone(&self) -> DeleteServiceOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteServiceOutputBuilder
impl Debug for DeleteServiceOutputBuilder
source§impl Default for DeleteServiceOutputBuilder
impl Default for DeleteServiceOutputBuilder
source§fn default() -> DeleteServiceOutputBuilder
fn default() -> DeleteServiceOutputBuilder
source§impl PartialEq for DeleteServiceOutputBuilder
impl PartialEq for DeleteServiceOutputBuilder
source§fn eq(&self, other: &DeleteServiceOutputBuilder) -> bool
fn eq(&self, other: &DeleteServiceOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteServiceOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteServiceOutputBuilder
impl RefUnwindSafe for DeleteServiceOutputBuilder
impl Send for DeleteServiceOutputBuilder
impl Sync for DeleteServiceOutputBuilder
impl Unpin for DeleteServiceOutputBuilder
impl UnwindSafe for DeleteServiceOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more