Struct aws_sdk_managedblockchain::types::builders::MemberFabricLogPublishingConfigurationBuilder
source · #[non_exhaustive]pub struct MemberFabricLogPublishingConfigurationBuilder { /* private fields */ }
Expand description
A builder for MemberFabricLogPublishingConfiguration
.
Implementations§
source§impl MemberFabricLogPublishingConfigurationBuilder
impl MemberFabricLogPublishingConfigurationBuilder
sourcepub fn ca_logs(self, input: LogConfigurations) -> Self
pub fn ca_logs(self, input: LogConfigurations) -> Self
Configuration properties for logging events associated with a member's Certificate Authority (CA). CA logs help you determine when a member in your account joins the network, or when new peers register with a member CA.
sourcepub fn set_ca_logs(self, input: Option<LogConfigurations>) -> Self
pub fn set_ca_logs(self, input: Option<LogConfigurations>) -> Self
Configuration properties for logging events associated with a member's Certificate Authority (CA). CA logs help you determine when a member in your account joins the network, or when new peers register with a member CA.
sourcepub fn get_ca_logs(&self) -> &Option<LogConfigurations>
pub fn get_ca_logs(&self) -> &Option<LogConfigurations>
Configuration properties for logging events associated with a member's Certificate Authority (CA). CA logs help you determine when a member in your account joins the network, or when new peers register with a member CA.
sourcepub fn build(self) -> MemberFabricLogPublishingConfiguration
pub fn build(self) -> MemberFabricLogPublishingConfiguration
Consumes the builder and constructs a MemberFabricLogPublishingConfiguration
.
Trait Implementations§
source§impl Clone for MemberFabricLogPublishingConfigurationBuilder
impl Clone for MemberFabricLogPublishingConfigurationBuilder
source§fn clone(&self) -> MemberFabricLogPublishingConfigurationBuilder
fn clone(&self) -> MemberFabricLogPublishingConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for MemberFabricLogPublishingConfigurationBuilder
impl Default for MemberFabricLogPublishingConfigurationBuilder
source§fn default() -> MemberFabricLogPublishingConfigurationBuilder
fn default() -> MemberFabricLogPublishingConfigurationBuilder
source§impl PartialEq for MemberFabricLogPublishingConfigurationBuilder
impl PartialEq for MemberFabricLogPublishingConfigurationBuilder
source§fn eq(&self, other: &MemberFabricLogPublishingConfigurationBuilder) -> bool
fn eq(&self, other: &MemberFabricLogPublishingConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MemberFabricLogPublishingConfigurationBuilder
Auto Trait Implementations§
impl Freeze for MemberFabricLogPublishingConfigurationBuilder
impl RefUnwindSafe for MemberFabricLogPublishingConfigurationBuilder
impl Send for MemberFabricLogPublishingConfigurationBuilder
impl Sync for MemberFabricLogPublishingConfigurationBuilder
impl Unpin for MemberFabricLogPublishingConfigurationBuilder
impl UnwindSafe for MemberFabricLogPublishingConfigurationBuilder
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