#[non_exhaustive]pub struct AwsEventSchemasRegistryDetails {
pub description: Option<String>,
pub registry_arn: Option<String>,
pub registry_name: Option<String>,
}
Expand description
A schema defines the structure of events that are sent to Amazon EventBridge. Schema registries are containers for schemas. They collect and organize schemas so that your schemas are in logical groups.
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.description: Option<String>
A description of the registry to be created.
registry_arn: Option<String>
The Amazon Resource Name (ARN) of the registry.
registry_name: Option<String>
The name of the schema registry.
Implementations§
source§impl AwsEventSchemasRegistryDetails
impl AwsEventSchemasRegistryDetails
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the registry to be created.
sourcepub fn registry_arn(&self) -> Option<&str>
pub fn registry_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the registry.
sourcepub fn registry_name(&self) -> Option<&str>
pub fn registry_name(&self) -> Option<&str>
The name of the schema registry.
source§impl AwsEventSchemasRegistryDetails
impl AwsEventSchemasRegistryDetails
sourcepub fn builder() -> AwsEventSchemasRegistryDetailsBuilder
pub fn builder() -> AwsEventSchemasRegistryDetailsBuilder
Creates a new builder-style object to manufacture AwsEventSchemasRegistryDetails
.
Trait Implementations§
source§impl Clone for AwsEventSchemasRegistryDetails
impl Clone for AwsEventSchemasRegistryDetails
source§fn clone(&self) -> AwsEventSchemasRegistryDetails
fn clone(&self) -> AwsEventSchemasRegistryDetails
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 PartialEq for AwsEventSchemasRegistryDetails
impl PartialEq for AwsEventSchemasRegistryDetails
source§fn eq(&self, other: &AwsEventSchemasRegistryDetails) -> bool
fn eq(&self, other: &AwsEventSchemasRegistryDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEventSchemasRegistryDetails
Auto Trait Implementations§
impl RefUnwindSafe for AwsEventSchemasRegistryDetails
impl Send for AwsEventSchemasRegistryDetails
impl Sync for AwsEventSchemasRegistryDetails
impl Unpin for AwsEventSchemasRegistryDetails
impl UnwindSafe for AwsEventSchemasRegistryDetails
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
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>
Creates a shared type from an unshared type.