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>>,
}
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.
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.
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<VerifiedAccessTrustProvider> for VerifiedAccessTrustProvider
impl PartialEq<VerifiedAccessTrustProvider> 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 ==
.