Struct aws_sdk_ec2::types::builders::VerifiedAccessLogsBuilder
source · #[non_exhaustive]pub struct VerifiedAccessLogsBuilder { /* private fields */ }
Expand description
A builder for VerifiedAccessLogs
.
Implementations§
source§impl VerifiedAccessLogsBuilder
impl VerifiedAccessLogsBuilder
sourcepub fn s3(self, input: VerifiedAccessLogS3Destination) -> Self
pub fn s3(self, input: VerifiedAccessLogS3Destination) -> Self
Amazon S3 logging options.
sourcepub fn set_s3(self, input: Option<VerifiedAccessLogS3Destination>) -> Self
pub fn set_s3(self, input: Option<VerifiedAccessLogS3Destination>) -> Self
Amazon S3 logging options.
sourcepub fn get_s3(&self) -> &Option<VerifiedAccessLogS3Destination>
pub fn get_s3(&self) -> &Option<VerifiedAccessLogS3Destination>
Amazon S3 logging options.
sourcepub fn cloud_watch_logs(
self,
input: VerifiedAccessLogCloudWatchLogsDestination
) -> Self
pub fn cloud_watch_logs( self, input: VerifiedAccessLogCloudWatchLogsDestination ) -> Self
CloudWatch Logs logging destination.
sourcepub fn set_cloud_watch_logs(
self,
input: Option<VerifiedAccessLogCloudWatchLogsDestination>
) -> Self
pub fn set_cloud_watch_logs( self, input: Option<VerifiedAccessLogCloudWatchLogsDestination> ) -> Self
CloudWatch Logs logging destination.
sourcepub fn get_cloud_watch_logs(
&self
) -> &Option<VerifiedAccessLogCloudWatchLogsDestination>
pub fn get_cloud_watch_logs( &self ) -> &Option<VerifiedAccessLogCloudWatchLogsDestination>
CloudWatch Logs logging destination.
sourcepub fn kinesis_data_firehose(
self,
input: VerifiedAccessLogKinesisDataFirehoseDestination
) -> Self
pub fn kinesis_data_firehose( self, input: VerifiedAccessLogKinesisDataFirehoseDestination ) -> Self
Kinesis logging destination.
sourcepub fn set_kinesis_data_firehose(
self,
input: Option<VerifiedAccessLogKinesisDataFirehoseDestination>
) -> Self
pub fn set_kinesis_data_firehose( self, input: Option<VerifiedAccessLogKinesisDataFirehoseDestination> ) -> Self
Kinesis logging destination.
sourcepub fn get_kinesis_data_firehose(
&self
) -> &Option<VerifiedAccessLogKinesisDataFirehoseDestination>
pub fn get_kinesis_data_firehose( &self ) -> &Option<VerifiedAccessLogKinesisDataFirehoseDestination>
Kinesis logging destination.
sourcepub fn log_version(self, input: impl Into<String>) -> Self
pub fn log_version(self, input: impl Into<String>) -> Self
The log version.
sourcepub fn set_log_version(self, input: Option<String>) -> Self
pub fn set_log_version(self, input: Option<String>) -> Self
The log version.
sourcepub fn get_log_version(&self) -> &Option<String>
pub fn get_log_version(&self) -> &Option<String>
The log version.
sourcepub fn include_trust_context(self, input: bool) -> Self
pub fn include_trust_context(self, input: bool) -> Self
Indicates whether trust data is included in the logs.
sourcepub fn set_include_trust_context(self, input: Option<bool>) -> Self
pub fn set_include_trust_context(self, input: Option<bool>) -> Self
Indicates whether trust data is included in the logs.
sourcepub fn get_include_trust_context(&self) -> &Option<bool>
pub fn get_include_trust_context(&self) -> &Option<bool>
Indicates whether trust data is included in the logs.
sourcepub fn build(self) -> VerifiedAccessLogs
pub fn build(self) -> VerifiedAccessLogs
Consumes the builder and constructs a VerifiedAccessLogs
.
Trait Implementations§
source§impl Clone for VerifiedAccessLogsBuilder
impl Clone for VerifiedAccessLogsBuilder
source§fn clone(&self) -> VerifiedAccessLogsBuilder
fn clone(&self) -> VerifiedAccessLogsBuilder
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 Debug for VerifiedAccessLogsBuilder
impl Debug for VerifiedAccessLogsBuilder
source§impl Default for VerifiedAccessLogsBuilder
impl Default for VerifiedAccessLogsBuilder
source§fn default() -> VerifiedAccessLogsBuilder
fn default() -> VerifiedAccessLogsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for VerifiedAccessLogsBuilder
impl PartialEq for VerifiedAccessLogsBuilder
source§fn eq(&self, other: &VerifiedAccessLogsBuilder) -> bool
fn eq(&self, other: &VerifiedAccessLogsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessLogsBuilder
Auto Trait Implementations§
impl Freeze for VerifiedAccessLogsBuilder
impl RefUnwindSafe for VerifiedAccessLogsBuilder
impl Send for VerifiedAccessLogsBuilder
impl Sync for VerifiedAccessLogsBuilder
impl Unpin for VerifiedAccessLogsBuilder
impl UnwindSafe for VerifiedAccessLogsBuilder
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.