Struct aws_sdk_proton::operation::get_service_sync_blocker_summary::GetServiceSyncBlockerSummaryInput
source · #[non_exhaustive]pub struct GetServiceSyncBlockerSummaryInput {
pub service_name: Option<String>,
pub service_instance_name: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.service_name: Option<String>
The name of the service that you want to get the service sync blocker summary for. If given only the service name, all instances are blocked.
service_instance_name: Option<String>
The name of the service instance that you want to get the service sync blocker summary for. If given bothe the instance name and the service name, only the instance is blocked.
Implementations§
source§impl GetServiceSyncBlockerSummaryInput
impl GetServiceSyncBlockerSummaryInput
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The name of the service that you want to get the service sync blocker summary for. If given only the service name, all instances are blocked.
sourcepub fn service_instance_name(&self) -> Option<&str>
pub fn service_instance_name(&self) -> Option<&str>
The name of the service instance that you want to get the service sync blocker summary for. If given bothe the instance name and the service name, only the instance is blocked.
source§impl GetServiceSyncBlockerSummaryInput
impl GetServiceSyncBlockerSummaryInput
sourcepub fn builder() -> GetServiceSyncBlockerSummaryInputBuilder
pub fn builder() -> GetServiceSyncBlockerSummaryInputBuilder
Creates a new builder-style object to manufacture GetServiceSyncBlockerSummaryInput
.
Trait Implementations§
source§impl Clone for GetServiceSyncBlockerSummaryInput
impl Clone for GetServiceSyncBlockerSummaryInput
source§fn clone(&self) -> GetServiceSyncBlockerSummaryInput
fn clone(&self) -> GetServiceSyncBlockerSummaryInput
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 PartialEq for GetServiceSyncBlockerSummaryInput
impl PartialEq for GetServiceSyncBlockerSummaryInput
source§fn eq(&self, other: &GetServiceSyncBlockerSummaryInput) -> bool
fn eq(&self, other: &GetServiceSyncBlockerSummaryInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetServiceSyncBlockerSummaryInput
Auto Trait Implementations§
impl RefUnwindSafe for GetServiceSyncBlockerSummaryInput
impl Send for GetServiceSyncBlockerSummaryInput
impl Sync for GetServiceSyncBlockerSummaryInput
impl Unpin for GetServiceSyncBlockerSummaryInput
impl UnwindSafe for GetServiceSyncBlockerSummaryInput
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
Mutably borrows from an owned value. Read more