Struct aws_sdk_waf::operation::put_logging_configuration::builders::PutLoggingConfigurationInputBuilder
source · #[non_exhaustive]pub struct PutLoggingConfigurationInputBuilder { /* private fields */ }Expand description
A builder for PutLoggingConfigurationInput.
Implementations§
source§impl PutLoggingConfigurationInputBuilder
impl PutLoggingConfigurationInputBuilder
sourcepub fn logging_configuration(self, input: LoggingConfiguration) -> Self
pub fn logging_configuration(self, input: LoggingConfiguration) -> Self
The Amazon Kinesis Data Firehose that contains the inspected traffic information, the redacted fields details, and the Amazon Resource Name (ARN) of the web ACL to monitor.
When specifying Type in RedactedFields, you must use one of the following values: URI, QUERY_STRING, HEADER, or METHOD.
sourcepub fn set_logging_configuration(
self,
input: Option<LoggingConfiguration>
) -> Self
pub fn set_logging_configuration( self, input: Option<LoggingConfiguration> ) -> Self
The Amazon Kinesis Data Firehose that contains the inspected traffic information, the redacted fields details, and the Amazon Resource Name (ARN) of the web ACL to monitor.
When specifying Type in RedactedFields, you must use one of the following values: URI, QUERY_STRING, HEADER, or METHOD.
sourcepub fn get_logging_configuration(&self) -> &Option<LoggingConfiguration>
pub fn get_logging_configuration(&self) -> &Option<LoggingConfiguration>
The Amazon Kinesis Data Firehose that contains the inspected traffic information, the redacted fields details, and the Amazon Resource Name (ARN) of the web ACL to monitor.
When specifying Type in RedactedFields, you must use one of the following values: URI, QUERY_STRING, HEADER, or METHOD.
sourcepub fn build(self) -> Result<PutLoggingConfigurationInput, BuildError>
pub fn build(self) -> Result<PutLoggingConfigurationInput, BuildError>
Consumes the builder and constructs a PutLoggingConfigurationInput.
source§impl PutLoggingConfigurationInputBuilder
impl PutLoggingConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<PutLoggingConfigurationOutput, SdkError<PutLoggingConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<PutLoggingConfigurationOutput, SdkError<PutLoggingConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutLoggingConfigurationInputBuilder
impl Clone for PutLoggingConfigurationInputBuilder
source§fn clone(&self) -> PutLoggingConfigurationInputBuilder
fn clone(&self) -> PutLoggingConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for PutLoggingConfigurationInputBuilder
impl Default for PutLoggingConfigurationInputBuilder
source§fn default() -> PutLoggingConfigurationInputBuilder
fn default() -> PutLoggingConfigurationInputBuilder
source§impl PartialEq for PutLoggingConfigurationInputBuilder
impl PartialEq for PutLoggingConfigurationInputBuilder
source§fn eq(&self, other: &PutLoggingConfigurationInputBuilder) -> bool
fn eq(&self, other: &PutLoggingConfigurationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutLoggingConfigurationInputBuilder
Auto Trait Implementations§
impl Freeze for PutLoggingConfigurationInputBuilder
impl RefUnwindSafe for PutLoggingConfigurationInputBuilder
impl Send for PutLoggingConfigurationInputBuilder
impl Sync for PutLoggingConfigurationInputBuilder
impl Unpin for PutLoggingConfigurationInputBuilder
impl UnwindSafe for PutLoggingConfigurationInputBuilder
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