Struct aws_sdk_sagemaker::output::DescribeDomainOutput [−][src]
#[non_exhaustive]pub struct DescribeDomainOutput {Show 20 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<Instant>,
pub last_modified_time: Option<Instant>,
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>,
}
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.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 SSO managed application instance ID.
status: Option<DomainStatus>
The status.
creation_time: Option<Instant>
The creation time.
last_modified_time: Option<Instant>
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>
This member is deprecated and replaced with 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.
Implementations
Creates a new builder-style object to manufacture DescribeDomainOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribeDomainOutput
impl Send for DescribeDomainOutput
impl Sync for DescribeDomainOutput
impl Unpin for DescribeDomainOutput
impl UnwindSafe for DescribeDomainOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more