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
Describes current setting for the logging version.
sourcepub fn set_log_version(self, input: Option<String>) -> Self
pub fn set_log_version(self, input: Option<String>) -> Self
Describes current setting for the logging version.
sourcepub fn get_log_version(&self) -> &Option<String>
pub fn get_log_version(&self) -> &Option<String>
Describes current setting for the logging version.
sourcepub fn include_trust_context(self, input: bool) -> Self
pub fn include_trust_context(self, input: bool) -> Self
Describes current setting for including trust data into the logs.
sourcepub fn set_include_trust_context(self, input: Option<bool>) -> Self
pub fn set_include_trust_context(self, input: Option<bool>) -> Self
Describes current setting for including trust data into the logs.
sourcepub fn get_include_trust_context(&self) -> &Option<bool>
pub fn get_include_trust_context(&self) -> &Option<bool>
Describes current setting for including trust data into 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<VerifiedAccessLogsBuilder> for VerifiedAccessLogsBuilder
impl PartialEq<VerifiedAccessLogsBuilder> 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 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