pub struct LoggingConfiguration {
pub log_destination_configs: Vec<String>,
pub redacted_fields: Option<Vec<FieldToMatch>>,
pub resource_arn: String,
}Expand description
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide. For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
The Amazon Kinesis Data Firehose, RedactedFields information, and the web ACL Amazon Resource Name (ARN).
Fields§
§log_destination_configs: Vec<String>An array of Amazon Kinesis Data Firehose ARNs.
redacted_fields: Option<Vec<FieldToMatch>>The parts of the request that you want redacted from the logs. For example, if you redact the cookie field, the cookie field in the firehose will be xxx.
resource_arn: StringThe Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
Trait Implementations§
Source§impl Clone for LoggingConfiguration
impl Clone for LoggingConfiguration
Source§fn clone(&self) -> LoggingConfiguration
fn clone(&self) -> LoggingConfiguration
Returns a duplicate 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 LoggingConfiguration
impl Debug for LoggingConfiguration
Source§impl Default for LoggingConfiguration
impl Default for LoggingConfiguration
Source§fn default() -> LoggingConfiguration
fn default() -> LoggingConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoggingConfiguration
impl<'de> Deserialize<'de> for LoggingConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LoggingConfiguration
impl PartialEq for LoggingConfiguration
Source§impl Serialize for LoggingConfiguration
impl Serialize for LoggingConfiguration
impl StructuralPartialEq for LoggingConfiguration
Auto Trait Implementations§
impl Freeze for LoggingConfiguration
impl RefUnwindSafe for LoggingConfiguration
impl Send for LoggingConfiguration
impl Sync for LoggingConfiguration
impl Unpin for LoggingConfiguration
impl UnwindSafe for LoggingConfiguration
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