Struct aws_sdk_ec2::types::VerifiedAccessTrustProvider
source · #[non_exhaustive]pub struct VerifiedAccessTrustProvider {
pub verified_access_trust_provider_id: Option<String>,
pub description: Option<String>,
pub trust_provider_type: Option<TrustProviderType>,
pub user_trust_provider_type: Option<UserTrustProviderType>,
pub device_trust_provider_type: Option<DeviceTrustProviderType>,
pub oidc_options: Option<OidcOptions>,
pub device_options: Option<DeviceOptions>,
pub policy_reference_name: Option<String>,
pub creation_time: Option<String>,
pub last_updated_time: Option<String>,
pub tags: Option<Vec<Tag>>,
pub sse_specification: Option<VerifiedAccessSseSpecificationResponse>,
}
Expand description
Describes a Verified Access trust provider.
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_trust_provider_id: Option<String>
The ID of the Amazon Web Services Verified Access trust provider.
description: Option<String>
A description for the Amazon Web Services Verified Access trust provider.
trust_provider_type: Option<TrustProviderType>
The type of Verified Access trust provider.
user_trust_provider_type: Option<UserTrustProviderType>
The type of user-based trust provider.
device_trust_provider_type: Option<DeviceTrustProviderType>
The type of device-based trust provider.
oidc_options: Option<OidcOptions>
The options for an OpenID Connect-compatible user-identity trust provider.
device_options: Option<DeviceOptions>
The options for device-identity trust provider.
policy_reference_name: Option<String>
The identifier to be used when working with policy rules.
creation_time: Option<String>
The creation time.
last_updated_time: Option<String>
The last updated time.
The tags.
sse_specification: Option<VerifiedAccessSseSpecificationResponse>
The options in use for server side encryption.
Implementations§
source§impl VerifiedAccessTrustProvider
impl VerifiedAccessTrustProvider
sourcepub fn verified_access_trust_provider_id(&self) -> Option<&str>
pub fn verified_access_trust_provider_id(&self) -> Option<&str>
The ID of the Amazon Web Services Verified Access trust provider.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the Amazon Web Services Verified Access trust provider.
sourcepub fn trust_provider_type(&self) -> Option<&TrustProviderType>
pub fn trust_provider_type(&self) -> Option<&TrustProviderType>
The type of Verified Access trust provider.
sourcepub fn user_trust_provider_type(&self) -> Option<&UserTrustProviderType>
pub fn user_trust_provider_type(&self) -> Option<&UserTrustProviderType>
The type of user-based trust provider.
sourcepub fn device_trust_provider_type(&self) -> Option<&DeviceTrustProviderType>
pub fn device_trust_provider_type(&self) -> Option<&DeviceTrustProviderType>
The type of device-based trust provider.
sourcepub fn oidc_options(&self) -> Option<&OidcOptions>
pub fn oidc_options(&self) -> Option<&OidcOptions>
The options for an OpenID Connect-compatible user-identity trust provider.
sourcepub fn device_options(&self) -> Option<&DeviceOptions>
pub fn device_options(&self) -> Option<&DeviceOptions>
The options for device-identity trust provider.
sourcepub fn policy_reference_name(&self) -> Option<&str>
pub fn policy_reference_name(&self) -> Option<&str>
The identifier to be used when working with policy rules.
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.
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 VerifiedAccessTrustProvider
impl VerifiedAccessTrustProvider
sourcepub fn builder() -> VerifiedAccessTrustProviderBuilder
pub fn builder() -> VerifiedAccessTrustProviderBuilder
Creates a new builder-style object to manufacture VerifiedAccessTrustProvider
.
Trait Implementations§
source§impl Clone for VerifiedAccessTrustProvider
impl Clone for VerifiedAccessTrustProvider
source§fn clone(&self) -> VerifiedAccessTrustProvider
fn clone(&self) -> VerifiedAccessTrustProvider
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VerifiedAccessTrustProvider
impl Debug for VerifiedAccessTrustProvider
source§impl PartialEq for VerifiedAccessTrustProvider
impl PartialEq for VerifiedAccessTrustProvider
source§fn eq(&self, other: &VerifiedAccessTrustProvider) -> bool
fn eq(&self, other: &VerifiedAccessTrustProvider) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessTrustProvider
Auto Trait Implementations§
impl Freeze for VerifiedAccessTrustProvider
impl RefUnwindSafe for VerifiedAccessTrustProvider
impl Send for VerifiedAccessTrustProvider
impl Sync for VerifiedAccessTrustProvider
impl Unpin for VerifiedAccessTrustProvider
impl UnwindSafe for VerifiedAccessTrustProvider
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