Struct aws_sdk_ec2::types::VerifiedAccessGroup
source · #[non_exhaustive]pub struct VerifiedAccessGroup {
pub verified_access_group_id: Option<String>,
pub verified_access_instance_id: Option<String>,
pub description: Option<String>,
pub owner: Option<String>,
pub verified_access_group_arn: Option<String>,
pub creation_time: Option<String>,
pub last_updated_time: Option<String>,
pub deletion_time: Option<String>,
pub tags: Option<Vec<Tag>>,
pub sse_specification: Option<VerifiedAccessSseSpecificationResponse>,
}
Expand description
Describes a Verified Access group.
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.verified_access_group_id: Option<String>
The ID of the Verified Access group.
verified_access_instance_id: Option<String>
The ID of the Amazon Web Services Verified Access instance.
description: Option<String>
A description for the Amazon Web Services Verified Access group.
owner: Option<String>
The Amazon Web Services account number that owns the group.
verified_access_group_arn: Option<String>
The ARN of the Verified Access group.
creation_time: Option<String>
The creation time.
last_updated_time: Option<String>
The last updated time.
deletion_time: Option<String>
The deletion time.
The tags.
sse_specification: Option<VerifiedAccessSseSpecificationResponse>
The options in use for server side encryption.
Implementations§
source§impl VerifiedAccessGroup
impl VerifiedAccessGroup
sourcepub fn verified_access_group_id(&self) -> Option<&str>
pub fn verified_access_group_id(&self) -> Option<&str>
The ID of the Verified Access group.
sourcepub fn verified_access_instance_id(&self) -> Option<&str>
pub fn verified_access_instance_id(&self) -> Option<&str>
The ID of the Amazon Web Services Verified Access instance.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the Amazon Web Services Verified Access group.
sourcepub fn owner(&self) -> Option<&str>
pub fn owner(&self) -> Option<&str>
The Amazon Web Services account number that owns the group.
sourcepub fn verified_access_group_arn(&self) -> Option<&str>
pub fn verified_access_group_arn(&self) -> Option<&str>
The ARN of the Verified Access group.
sourcepub fn creation_time(&self) -> Option<&str>
pub fn creation_time(&self) -> Option<&str>
The creation time.
sourcepub fn last_updated_time(&self) -> Option<&str>
pub fn last_updated_time(&self) -> Option<&str>
The last updated time.
sourcepub fn deletion_time(&self) -> Option<&str>
pub fn deletion_time(&self) -> Option<&str>
The deletion time.
The tags.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
sourcepub fn sse_specification(
&self,
) -> Option<&VerifiedAccessSseSpecificationResponse>
pub fn sse_specification( &self, ) -> Option<&VerifiedAccessSseSpecificationResponse>
The options in use for server side encryption.
source§impl VerifiedAccessGroup
impl VerifiedAccessGroup
sourcepub fn builder() -> VerifiedAccessGroupBuilder
pub fn builder() -> VerifiedAccessGroupBuilder
Creates a new builder-style object to manufacture VerifiedAccessGroup
.
Trait Implementations§
source§impl Clone for VerifiedAccessGroup
impl Clone for VerifiedAccessGroup
source§fn clone(&self) -> VerifiedAccessGroup
fn clone(&self) -> VerifiedAccessGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VerifiedAccessGroup
impl Debug for VerifiedAccessGroup
source§impl PartialEq for VerifiedAccessGroup
impl PartialEq for VerifiedAccessGroup
source§fn eq(&self, other: &VerifiedAccessGroup) -> bool
fn eq(&self, other: &VerifiedAccessGroup) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessGroup
Auto Trait Implementations§
impl Freeze for VerifiedAccessGroup
impl RefUnwindSafe for VerifiedAccessGroup
impl Send for VerifiedAccessGroup
impl Sync for VerifiedAccessGroup
impl Unpin for VerifiedAccessGroup
impl UnwindSafe for VerifiedAccessGroup
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> 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