#[non_exhaustive]pub struct ServiceIntegrationConfigBuilder { /* private fields */ }
Expand description
A builder for ServiceIntegrationConfig
.
Implementations§
source§impl ServiceIntegrationConfigBuilder
impl ServiceIntegrationConfigBuilder
sourcepub fn ops_center(self, input: OpsCenterIntegration) -> Self
pub fn ops_center(self, input: OpsCenterIntegration) -> Self
Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager OpsCenter for each created insight.
sourcepub fn set_ops_center(self, input: Option<OpsCenterIntegration>) -> Self
pub fn set_ops_center(self, input: Option<OpsCenterIntegration>) -> Self
Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager OpsCenter for each created insight.
sourcepub fn get_ops_center(&self) -> &Option<OpsCenterIntegration>
pub fn get_ops_center(&self) -> &Option<OpsCenterIntegration>
Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager OpsCenter for each created insight.
sourcepub fn logs_anomaly_detection(
self,
input: LogsAnomalyDetectionIntegration
) -> Self
pub fn logs_anomaly_detection( self, input: LogsAnomalyDetectionIntegration ) -> 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<LogsAnomalyDetectionIntegration>
) -> Self
pub fn set_logs_anomaly_detection( self, input: Option<LogsAnomalyDetectionIntegration> ) -> 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<LogsAnomalyDetectionIntegration>
pub fn get_logs_anomaly_detection( &self ) -> &Option<LogsAnomalyDetectionIntegration>
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: KmsServerSideEncryptionIntegration
) -> Self
pub fn kms_server_side_encryption( self, input: KmsServerSideEncryptionIntegration ) -> 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<KmsServerSideEncryptionIntegration>
) -> Self
pub fn set_kms_server_side_encryption( self, input: Option<KmsServerSideEncryptionIntegration> ) -> Self
Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
sourcepub fn get_kms_server_side_encryption(
&self
) -> &Option<KmsServerSideEncryptionIntegration>
pub fn get_kms_server_side_encryption( &self ) -> &Option<KmsServerSideEncryptionIntegration>
Information about whether DevOps Guru is configured to encrypt server-side data using KMS.
sourcepub fn build(self) -> ServiceIntegrationConfig
pub fn build(self) -> ServiceIntegrationConfig
Consumes the builder and constructs a ServiceIntegrationConfig
.
Trait Implementations§
source§impl Clone for ServiceIntegrationConfigBuilder
impl Clone for ServiceIntegrationConfigBuilder
source§fn clone(&self) -> ServiceIntegrationConfigBuilder
fn clone(&self) -> ServiceIntegrationConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ServiceIntegrationConfigBuilder
impl Default for ServiceIntegrationConfigBuilder
source§fn default() -> ServiceIntegrationConfigBuilder
fn default() -> ServiceIntegrationConfigBuilder
source§impl PartialEq for ServiceIntegrationConfigBuilder
impl PartialEq for ServiceIntegrationConfigBuilder
source§fn eq(&self, other: &ServiceIntegrationConfigBuilder) -> bool
fn eq(&self, other: &ServiceIntegrationConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ServiceIntegrationConfigBuilder
Auto Trait Implementations§
impl Freeze for ServiceIntegrationConfigBuilder
impl RefUnwindSafe for ServiceIntegrationConfigBuilder
impl Send for ServiceIntegrationConfigBuilder
impl Sync for ServiceIntegrationConfigBuilder
impl Unpin for ServiceIntegrationConfigBuilder
impl UnwindSafe for ServiceIntegrationConfigBuilder
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