#[non_exhaustive]pub struct UpdateServiceIntegrationConfigBuilder { /* private fields */ }
Expand description
A builder for UpdateServiceIntegrationConfig
.
Implementations§
source§impl UpdateServiceIntegrationConfigBuilder
impl UpdateServiceIntegrationConfigBuilder
sourcepub fn ops_center(self, input: OpsCenterIntegrationConfig) -> Self
pub fn ops_center(self, input: OpsCenterIntegrationConfig) -> Self
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.
sourcepub fn set_ops_center(self, input: Option<OpsCenterIntegrationConfig>) -> Self
pub fn set_ops_center(self, input: Option<OpsCenterIntegrationConfig>) -> Self
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.
sourcepub fn get_ops_center(&self) -> &Option<OpsCenterIntegrationConfig>
pub fn get_ops_center(&self) -> &Option<OpsCenterIntegrationConfig>
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.
sourcepub fn logs_anomaly_detection(
self,
input: LogsAnomalyDetectionIntegrationConfig
) -> Self
pub fn logs_anomaly_detection( self, input: LogsAnomalyDetectionIntegrationConfig ) -> Self
Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups.
sourcepub fn set_logs_anomaly_detection(
self,
input: Option<LogsAnomalyDetectionIntegrationConfig>
) -> Self
pub fn set_logs_anomaly_detection( self, input: Option<LogsAnomalyDetectionIntegrationConfig> ) -> Self
Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups.
sourcepub fn get_logs_anomaly_detection(
&self
) -> &Option<LogsAnomalyDetectionIntegrationConfig>
pub fn get_logs_anomaly_detection( &self ) -> &Option<LogsAnomalyDetectionIntegrationConfig>
Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups.
sourcepub fn kms_server_side_encryption(
self,
input: KmsServerSideEncryptionIntegrationConfig
) -> Self
pub fn kms_server_side_encryption( self, input: KmsServerSideEncryptionIntegrationConfig ) -> Self
Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
sourcepub fn set_kms_server_side_encryption(
self,
input: Option<KmsServerSideEncryptionIntegrationConfig>
) -> Self
pub fn set_kms_server_side_encryption( self, input: Option<KmsServerSideEncryptionIntegrationConfig> ) -> Self
Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
sourcepub fn get_kms_server_side_encryption(
&self
) -> &Option<KmsServerSideEncryptionIntegrationConfig>
pub fn get_kms_server_side_encryption( &self ) -> &Option<KmsServerSideEncryptionIntegrationConfig>
Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
sourcepub fn build(self) -> UpdateServiceIntegrationConfig
pub fn build(self) -> UpdateServiceIntegrationConfig
Consumes the builder and constructs a UpdateServiceIntegrationConfig
.
Trait Implementations§
source§impl Clone for UpdateServiceIntegrationConfigBuilder
impl Clone for UpdateServiceIntegrationConfigBuilder
source§fn clone(&self) -> UpdateServiceIntegrationConfigBuilder
fn clone(&self) -> UpdateServiceIntegrationConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateServiceIntegrationConfigBuilder
impl Default for UpdateServiceIntegrationConfigBuilder
source§fn default() -> UpdateServiceIntegrationConfigBuilder
fn default() -> UpdateServiceIntegrationConfigBuilder
source§impl PartialEq for UpdateServiceIntegrationConfigBuilder
impl PartialEq for UpdateServiceIntegrationConfigBuilder
source§fn eq(&self, other: &UpdateServiceIntegrationConfigBuilder) -> bool
fn eq(&self, other: &UpdateServiceIntegrationConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateServiceIntegrationConfigBuilder
Auto Trait Implementations§
impl Freeze for UpdateServiceIntegrationConfigBuilder
impl RefUnwindSafe for UpdateServiceIntegrationConfigBuilder
impl Send for UpdateServiceIntegrationConfigBuilder
impl Sync for UpdateServiceIntegrationConfigBuilder
impl Unpin for UpdateServiceIntegrationConfigBuilder
impl UnwindSafe for UpdateServiceIntegrationConfigBuilder
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