#[non_exhaustive]
pub struct DescribeDomainOutput {
Show 21 fields pub domain_arn: Option<String>, pub domain_id: Option<String>, pub domain_name: Option<String>, pub home_efs_file_system_id: Option<String>, pub single_sign_on_managed_application_instance_id: Option<String>, pub status: Option<DomainStatus>, pub creation_time: Option<DateTime>, pub last_modified_time: Option<DateTime>, pub failure_reason: Option<String>, pub auth_mode: Option<AuthMode>, pub default_user_settings: Option<UserSettings>, pub app_network_access_type: Option<AppNetworkAccessType>, pub home_efs_file_system_kms_key_id: Option<String>, pub subnet_ids: Option<Vec<String>>, pub url: Option<String>, pub vpc_id: Option<String>, pub kms_key_id: Option<String>, pub domain_settings: Option<DomainSettings>, pub app_security_group_management: Option<AppSecurityGroupManagement>, pub security_group_id_for_domain_boundary: Option<String>, pub default_space_settings: Option<DefaultSpaceSettings>, /* private fields */
}

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.
§domain_arn: Option<String>

The domain's Amazon Resource Name (ARN).

§domain_id: Option<String>

The domain ID.

§domain_name: Option<String>

The domain name.

§home_efs_file_system_id: Option<String>

The ID of the Amazon Elastic File System (EFS) managed by this Domain.

§single_sign_on_managed_application_instance_id: Option<String>

The IAM Identity Center managed application instance ID.

§status: Option<DomainStatus>

The status.

§creation_time: Option<DateTime>

The creation time.

§last_modified_time: Option<DateTime>

The last modified time.

§failure_reason: Option<String>

The failure reason.

§auth_mode: Option<AuthMode>

The domain's authentication mode.

§default_user_settings: Option<UserSettings>

Settings which are applied to UserProfiles in this domain if settings are not explicitly specified in a given UserProfile.

§app_network_access_type: Option<AppNetworkAccessType>

Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly.

  • PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access

  • VpcOnly - All Studio traffic is through the specified VPC and subnets

§home_efs_file_system_kms_key_id: Option<String>
👎Deprecated: This property is deprecated, use KmsKeyId instead.

Use KmsKeyId.

§subnet_ids: Option<Vec<String>>

The VPC subnets that Studio uses for communication.

§url: Option<String>

The domain's URL.

§vpc_id: Option<String>

The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.

§kms_key_id: Option<String>

The Amazon Web Services KMS customer managed key used to encrypt the EFS volume attached to the domain.

§domain_settings: Option<DomainSettings>

A collection of Domain settings.

§app_security_group_management: Option<AppSecurityGroupManagement>

The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided.

§security_group_id_for_domain_boundary: Option<String>

The ID of the security group that authorizes traffic between the RSessionGateway apps and the RStudioServerPro app.

§default_space_settings: Option<DefaultSpaceSettings>

The default settings used to create a space.

Implementations§

source§

impl DescribeDomainOutput

source

pub fn domain_arn(&self) -> Option<&str>

The domain's Amazon Resource Name (ARN).

source

pub fn domain_id(&self) -> Option<&str>

The domain ID.

source

pub fn domain_name(&self) -> Option<&str>

The domain name.

source

pub fn home_efs_file_system_id(&self) -> Option<&str>

The ID of the Amazon Elastic File System (EFS) managed by this Domain.

source

pub fn single_sign_on_managed_application_instance_id(&self) -> Option<&str>

The IAM Identity Center managed application instance ID.

source

pub fn status(&self) -> Option<&DomainStatus>

The status.

source

pub fn creation_time(&self) -> Option<&DateTime>

The creation time.

source

pub fn last_modified_time(&self) -> Option<&DateTime>

The last modified time.

source

pub fn failure_reason(&self) -> Option<&str>

The failure reason.

source

pub fn auth_mode(&self) -> Option<&AuthMode>

The domain's authentication mode.

source

pub fn default_user_settings(&self) -> Option<&UserSettings>

Settings which are applied to UserProfiles in this domain if settings are not explicitly specified in a given UserProfile.

source

pub fn app_network_access_type(&self) -> Option<&AppNetworkAccessType>

Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly.

  • PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access

  • VpcOnly - All Studio traffic is through the specified VPC and subnets

source

pub fn home_efs_file_system_kms_key_id(&self) -> Option<&str>

👎Deprecated: This property is deprecated, use KmsKeyId instead.

Use KmsKeyId.

source

pub fn subnet_ids(&self) -> Option<&[String]>

The VPC subnets that Studio uses for communication.

source

pub fn url(&self) -> Option<&str>

The domain's URL.

source

pub fn vpc_id(&self) -> Option<&str>

The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.

source

pub fn kms_key_id(&self) -> Option<&str>

The Amazon Web Services KMS customer managed key used to encrypt the EFS volume attached to the domain.

source

pub fn domain_settings(&self) -> Option<&DomainSettings>

A collection of Domain settings.

source

pub fn app_security_group_management( &self ) -> Option<&AppSecurityGroupManagement>

The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided.

source

pub fn security_group_id_for_domain_boundary(&self) -> Option<&str>

The ID of the security group that authorizes traffic between the RSessionGateway apps and the RStudioServerPro app.

source

pub fn default_space_settings(&self) -> Option<&DefaultSpaceSettings>

The default settings used to create a space.

source§

impl DescribeDomainOutput

source

pub fn builder() -> DescribeDomainOutputBuilder

Creates a new builder-style object to manufacture DescribeDomainOutput.

Trait Implementations§

source§

impl Clone for DescribeDomainOutput

source§

fn clone(&self) -> DescribeDomainOutput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DescribeDomainOutput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<DescribeDomainOutput> for DescribeDomainOutput

source§

fn eq(&self, other: &DescribeDomainOutput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl RequestId for DescribeDomainOutput

source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.
source§

impl StructuralPartialEq for DescribeDomainOutput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more