#[non_exhaustive]pub struct UpdateSubscriberInput {
pub subscriber_id: Option<String>,
pub subscriber_identity: Option<AwsIdentity>,
pub subscriber_name: Option<String>,
pub subscriber_description: Option<String>,
pub sources: Option<Vec<LogSourceResource>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.subscriber_id: Option<String>A value created by Security Lake that uniquely identifies your subscription.
subscriber_identity: Option<AwsIdentity>The AWS identity used to access your data.
subscriber_name: Option<String>The name of the Security Lake account subscriber.
subscriber_description: Option<String>The description of the Security Lake account subscriber.
sources: Option<Vec<LogSourceResource>>The supported Amazon Web Services from which logs and events are collected. For the list of supported Amazon Web Services, see the Amazon Security Lake User Guide.
Implementations§
source§impl UpdateSubscriberInput
impl UpdateSubscriberInput
sourcepub fn subscriber_id(&self) -> Option<&str>
pub fn subscriber_id(&self) -> Option<&str>
A value created by Security Lake that uniquely identifies your subscription.
sourcepub fn subscriber_identity(&self) -> Option<&AwsIdentity>
pub fn subscriber_identity(&self) -> Option<&AwsIdentity>
The AWS identity used to access your data.
sourcepub fn subscriber_name(&self) -> Option<&str>
pub fn subscriber_name(&self) -> Option<&str>
The name of the Security Lake account subscriber.
sourcepub fn subscriber_description(&self) -> Option<&str>
pub fn subscriber_description(&self) -> Option<&str>
The description of the Security Lake account subscriber.
sourcepub fn sources(&self) -> &[LogSourceResource]
pub fn sources(&self) -> &[LogSourceResource]
The supported Amazon Web Services from which logs and events are collected. For the list of supported Amazon Web Services, see the Amazon Security Lake User Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .sources.is_none().
source§impl UpdateSubscriberInput
impl UpdateSubscriberInput
sourcepub fn builder() -> UpdateSubscriberInputBuilder
pub fn builder() -> UpdateSubscriberInputBuilder
Creates a new builder-style object to manufacture UpdateSubscriberInput.
Trait Implementations§
source§impl Clone for UpdateSubscriberInput
impl Clone for UpdateSubscriberInput
source§fn clone(&self) -> UpdateSubscriberInput
fn clone(&self) -> UpdateSubscriberInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateSubscriberInput
impl Debug for UpdateSubscriberInput
source§impl PartialEq for UpdateSubscriberInput
impl PartialEq for UpdateSubscriberInput
source§fn eq(&self, other: &UpdateSubscriberInput) -> bool
fn eq(&self, other: &UpdateSubscriberInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSubscriberInput
Auto Trait Implementations§
impl Freeze for UpdateSubscriberInput
impl RefUnwindSafe for UpdateSubscriberInput
impl Send for UpdateSubscriberInput
impl Sync for UpdateSubscriberInput
impl Unpin for UpdateSubscriberInput
impl UnwindSafe for UpdateSubscriberInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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