#[non_exhaustive]pub struct AwsRoute53QueryLoggingConfigDetailsBuilder { /* private fields */ }
Expand description
A builder for AwsRoute53QueryLoggingConfigDetails
.
Implementations§
source§impl AwsRoute53QueryLoggingConfigDetailsBuilder
impl AwsRoute53QueryLoggingConfigDetailsBuilder
sourcepub fn cloud_watch_logs_log_group_arn(
self,
input: CloudWatchLogsLogGroupArnConfigDetails
) -> Self
pub fn cloud_watch_logs_log_group_arn( self, input: CloudWatchLogsLogGroupArnConfigDetails ) -> Self
The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group that Route 53 is publishing logs to.
sourcepub fn set_cloud_watch_logs_log_group_arn(
self,
input: Option<CloudWatchLogsLogGroupArnConfigDetails>
) -> Self
pub fn set_cloud_watch_logs_log_group_arn( self, input: Option<CloudWatchLogsLogGroupArnConfigDetails> ) -> Self
The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group that Route 53 is publishing logs to.
sourcepub fn get_cloud_watch_logs_log_group_arn(
&self
) -> &Option<CloudWatchLogsLogGroupArnConfigDetails>
pub fn get_cloud_watch_logs_log_group_arn( &self ) -> &Option<CloudWatchLogsLogGroupArnConfigDetails>
The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log group that Route 53 is publishing logs to.
sourcepub fn build(self) -> AwsRoute53QueryLoggingConfigDetails
pub fn build(self) -> AwsRoute53QueryLoggingConfigDetails
Consumes the builder and constructs a AwsRoute53QueryLoggingConfigDetails
.
Trait Implementations§
source§impl Clone for AwsRoute53QueryLoggingConfigDetailsBuilder
impl Clone for AwsRoute53QueryLoggingConfigDetailsBuilder
source§fn clone(&self) -> AwsRoute53QueryLoggingConfigDetailsBuilder
fn clone(&self) -> AwsRoute53QueryLoggingConfigDetailsBuilder
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 Default for AwsRoute53QueryLoggingConfigDetailsBuilder
impl Default for AwsRoute53QueryLoggingConfigDetailsBuilder
source§fn default() -> AwsRoute53QueryLoggingConfigDetailsBuilder
fn default() -> AwsRoute53QueryLoggingConfigDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AwsRoute53QueryLoggingConfigDetailsBuilder
impl PartialEq for AwsRoute53QueryLoggingConfigDetailsBuilder
source§fn eq(&self, other: &AwsRoute53QueryLoggingConfigDetailsBuilder) -> bool
fn eq(&self, other: &AwsRoute53QueryLoggingConfigDetailsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsRoute53QueryLoggingConfigDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsRoute53QueryLoggingConfigDetailsBuilder
impl RefUnwindSafe for AwsRoute53QueryLoggingConfigDetailsBuilder
impl Send for AwsRoute53QueryLoggingConfigDetailsBuilder
impl Sync for AwsRoute53QueryLoggingConfigDetailsBuilder
impl Unpin for AwsRoute53QueryLoggingConfigDetailsBuilder
impl UnwindSafe for AwsRoute53QueryLoggingConfigDetailsBuilder
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>
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.