Struct aws_sdk_ec2::model::CidrAuthorizationContext
source · [−]#[non_exhaustive]pub struct CidrAuthorizationContext {
pub message: Option<String>,
pub signature: Option<String>,
}
Expand description
Provides authorization for Amazon to bring a specific IP address range to a specific Amazon Web Services account using bring your own IP addresses (BYOIP). For more information, see Configuring your BYOIP address range in the Amazon Elastic Compute Cloud User Guide.
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.message: Option<String>
The plain-text authorization message for the prefix and account.
signature: Option<String>
The signed authorization message for the prefix and account.
Implementations
sourceimpl CidrAuthorizationContext
impl CidrAuthorizationContext
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CidrAuthorizationContext
.
Trait Implementations
sourceimpl Clone for CidrAuthorizationContext
impl Clone for CidrAuthorizationContext
sourcefn clone(&self) -> CidrAuthorizationContext
fn clone(&self) -> CidrAuthorizationContext
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CidrAuthorizationContext
impl Debug for CidrAuthorizationContext
sourceimpl PartialEq<CidrAuthorizationContext> for CidrAuthorizationContext
impl PartialEq<CidrAuthorizationContext> for CidrAuthorizationContext
sourcefn eq(&self, other: &CidrAuthorizationContext) -> bool
fn eq(&self, other: &CidrAuthorizationContext) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CidrAuthorizationContext) -> bool
fn ne(&self, other: &CidrAuthorizationContext) -> bool
This method tests for !=
.
impl StructuralPartialEq for CidrAuthorizationContext
Auto Trait Implementations
impl RefUnwindSafe for CidrAuthorizationContext
impl Send for CidrAuthorizationContext
impl Sync for CidrAuthorizationContext
impl Unpin for CidrAuthorizationContext
impl UnwindSafe for CidrAuthorizationContext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more