Struct aws_sdk_ec2::types::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
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.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§
source§impl CidrAuthorizationContext
impl CidrAuthorizationContext
sourcepub fn builder() -> CidrAuthorizationContextBuilder
pub fn builder() -> CidrAuthorizationContextBuilder
Creates a new builder-style object to manufacture CidrAuthorizationContext
.
Trait Implementations§
source§impl Clone for CidrAuthorizationContext
impl Clone for CidrAuthorizationContext
source§fn clone(&self) -> CidrAuthorizationContext
fn clone(&self) -> CidrAuthorizationContext
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 CidrAuthorizationContext
impl Debug for CidrAuthorizationContext
source§impl PartialEq<CidrAuthorizationContext> for CidrAuthorizationContext
impl PartialEq<CidrAuthorizationContext> for CidrAuthorizationContext
source§fn 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 ==
.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§
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