#[non_exhaustive]pub struct OpsCenterIntegrationConfig {
pub opt_in_status: Option<OptInStatus>,
}
Expand description
Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager OpsCenter for each created insight. You can use this to update the configuration.
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.opt_in_status: Option<OptInStatus>
Specifies if DevOps Guru is enabled to create an Amazon Web Services Systems Manager OpsItem for each created insight.
Implementations§
source§impl OpsCenterIntegrationConfig
impl OpsCenterIntegrationConfig
sourcepub fn opt_in_status(&self) -> Option<&OptInStatus>
pub fn opt_in_status(&self) -> Option<&OptInStatus>
Specifies if DevOps Guru is enabled to create an Amazon Web Services Systems Manager OpsItem for each created insight.
source§impl OpsCenterIntegrationConfig
impl OpsCenterIntegrationConfig
sourcepub fn builder() -> OpsCenterIntegrationConfigBuilder
pub fn builder() -> OpsCenterIntegrationConfigBuilder
Creates a new builder-style object to manufacture OpsCenterIntegrationConfig
.
Trait Implementations§
source§impl Clone for OpsCenterIntegrationConfig
impl Clone for OpsCenterIntegrationConfig
source§fn clone(&self) -> OpsCenterIntegrationConfig
fn clone(&self) -> OpsCenterIntegrationConfig
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 OpsCenterIntegrationConfig
impl Debug for OpsCenterIntegrationConfig
source§impl PartialEq for OpsCenterIntegrationConfig
impl PartialEq for OpsCenterIntegrationConfig
source§fn eq(&self, other: &OpsCenterIntegrationConfig) -> bool
fn eq(&self, other: &OpsCenterIntegrationConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OpsCenterIntegrationConfig
Auto Trait Implementations§
impl RefUnwindSafe for OpsCenterIntegrationConfig
impl Send for OpsCenterIntegrationConfig
impl Sync for OpsCenterIntegrationConfig
impl Unpin for OpsCenterIntegrationConfig
impl UnwindSafe for OpsCenterIntegrationConfig
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
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>
Creates a shared type from an unshared type.