#[non_exhaustive]pub struct UpdateServiceIntegrationConfig {
pub ops_center: Option<OpsCenterIntegrationConfig>,
pub logs_anomaly_detection: Option<LogsAnomalyDetectionIntegrationConfig>,
pub kms_server_side_encryption: Option<KmsServerSideEncryptionIntegrationConfig>,
}
Expand description
Information about updating the integration status of an Amazon Web Services service, such as Amazon Web Services Systems Manager, with DevOps Guru.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ops_center: 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.
logs_anomaly_detection: Option<LogsAnomalyDetectionIntegrationConfig>
Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups.
kms_server_side_encryption: Option<KmsServerSideEncryptionIntegrationConfig>
Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
Implementations§
source§impl UpdateServiceIntegrationConfig
impl UpdateServiceIntegrationConfig
sourcepub fn ops_center(&self) -> Option<&OpsCenterIntegrationConfig>
pub fn 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
) -> Option<&LogsAnomalyDetectionIntegrationConfig>
pub fn 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
) -> Option<&KmsServerSideEncryptionIntegrationConfig>
pub fn kms_server_side_encryption( &self ) -> Option<&KmsServerSideEncryptionIntegrationConfig>
Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
source§impl UpdateServiceIntegrationConfig
impl UpdateServiceIntegrationConfig
sourcepub fn builder() -> UpdateServiceIntegrationConfigBuilder
pub fn builder() -> UpdateServiceIntegrationConfigBuilder
Creates a new builder-style object to manufacture UpdateServiceIntegrationConfig
.
Trait Implementations§
source§impl Clone for UpdateServiceIntegrationConfig
impl Clone for UpdateServiceIntegrationConfig
source§fn clone(&self) -> UpdateServiceIntegrationConfig
fn clone(&self) -> UpdateServiceIntegrationConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateServiceIntegrationConfig
impl PartialEq for UpdateServiceIntegrationConfig
source§fn eq(&self, other: &UpdateServiceIntegrationConfig) -> bool
fn eq(&self, other: &UpdateServiceIntegrationConfig) -> bool
self
and other
values to be equal, and is used
by ==
.