#[non_exhaustive]pub struct CreateAwsLogSourceInput {
    pub sources: Option<Vec<AwsLogSourceConfiguration>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sources: Option<Vec<AwsLogSourceConfiguration>>Specify the natively-supported Amazon Web Services service to add as a source in Security Lake.
Implementations§
source§impl CreateAwsLogSourceInput
 
impl CreateAwsLogSourceInput
sourcepub fn sources(&self) -> Option<&[AwsLogSourceConfiguration]>
 
pub fn sources(&self) -> Option<&[AwsLogSourceConfiguration]>
Specify the natively-supported Amazon Web Services service to add as a source in Security Lake.
source§impl CreateAwsLogSourceInput
 
impl CreateAwsLogSourceInput
sourcepub fn builder() -> CreateAwsLogSourceInputBuilder
 
pub fn builder() -> CreateAwsLogSourceInputBuilder
Creates a new builder-style object to manufacture CreateAwsLogSourceInput.
Trait Implementations§
source§impl Clone for CreateAwsLogSourceInput
 
impl Clone for CreateAwsLogSourceInput
source§fn clone(&self) -> CreateAwsLogSourceInput
 
fn clone(&self) -> CreateAwsLogSourceInput
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 CreateAwsLogSourceInput
 
impl Debug for CreateAwsLogSourceInput
source§impl PartialEq<CreateAwsLogSourceInput> for CreateAwsLogSourceInput
 
impl PartialEq<CreateAwsLogSourceInput> for CreateAwsLogSourceInput
source§fn eq(&self, other: &CreateAwsLogSourceInput) -> bool
 
fn eq(&self, other: &CreateAwsLogSourceInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateAwsLogSourceInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateAwsLogSourceInput
impl Send for CreateAwsLogSourceInput
impl Sync for CreateAwsLogSourceInput
impl Unpin for CreateAwsLogSourceInput
impl UnwindSafe for CreateAwsLogSourceInput
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