Struct aws_sdk_apigateway::types::MethodSnapshot
source · #[non_exhaustive]pub struct MethodSnapshot {
pub authorization_type: Option<String>,
pub api_key_required: bool,
}
Expand description
Represents a summary of a Method resource, given a particular date and time.
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.The method's authorization type. Valid values are NONE
for open access, AWS_IAM
for using AWS IAM permissions, CUSTOM
for using a custom authorizer, or COGNITO_USER_POOLS
for using a Cognito user pool.
api_key_required: bool
Specifies whether the method requires a valid ApiKey.
Implementations§
source§impl MethodSnapshot
impl MethodSnapshot
The method's authorization type. Valid values are NONE
for open access, AWS_IAM
for using AWS IAM permissions, CUSTOM
for using a custom authorizer, or COGNITO_USER_POOLS
for using a Cognito user pool.
sourcepub fn api_key_required(&self) -> bool
pub fn api_key_required(&self) -> bool
Specifies whether the method requires a valid ApiKey.
source§impl MethodSnapshot
impl MethodSnapshot
sourcepub fn builder() -> MethodSnapshotBuilder
pub fn builder() -> MethodSnapshotBuilder
Creates a new builder-style object to manufacture MethodSnapshot
.
Trait Implementations§
source§impl Clone for MethodSnapshot
impl Clone for MethodSnapshot
source§fn clone(&self) -> MethodSnapshot
fn clone(&self) -> MethodSnapshot
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 MethodSnapshot
impl Debug for MethodSnapshot
source§impl PartialEq<MethodSnapshot> for MethodSnapshot
impl PartialEq<MethodSnapshot> for MethodSnapshot
source§fn eq(&self, other: &MethodSnapshot) -> bool
fn eq(&self, other: &MethodSnapshot) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MethodSnapshot
Auto Trait Implementations§
impl RefUnwindSafe for MethodSnapshot
impl Send for MethodSnapshot
impl Sync for MethodSnapshot
impl Unpin for MethodSnapshot
impl UnwindSafe for MethodSnapshot
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