Struct aws_sdk_finspace::types::Environment
source · #[non_exhaustive]pub struct Environment {
pub name: Option<String>,
pub environment_id: Option<String>,
pub aws_account_id: Option<String>,
pub status: Option<EnvironmentStatus>,
pub environment_url: Option<String>,
pub description: Option<String>,
pub environment_arn: Option<String>,
pub sage_maker_studio_domain_url: Option<String>,
pub kms_key_id: Option<String>,
pub dedicated_service_account_id: Option<String>,
pub federation_mode: Option<FederationMode>,
pub federation_parameters: Option<FederationParameters>,
}
Expand description
Represents an FinSpace environment.
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.name: Option<String>
The name of the FinSpace environment.
environment_id: Option<String>
The identifier of the FinSpace environment.
aws_account_id: Option<String>
The ID of the AWS account in which the FinSpace environment is created.
status: Option<EnvironmentStatus>
The current status of creation of the FinSpace environment.
environment_url: Option<String>
The sign-in URL for the web application of your FinSpace environment.
description: Option<String>
The description of the FinSpace environment.
environment_arn: Option<String>
The Amazon Resource Name (ARN) of your FinSpace environment.
sage_maker_studio_domain_url: Option<String>
The URL of the integrated FinSpace notebook environment in your web application.
kms_key_id: Option<String>
The KMS key id used to encrypt in the FinSpace environment.
dedicated_service_account_id: Option<String>
The AWS account ID of the dedicated service account associated with your FinSpace environment.
federation_mode: Option<FederationMode>
The authentication mode for the environment.
federation_parameters: Option<FederationParameters>
Configuration information when authentication mode is FEDERATED.
Implementations§
source§impl Environment
impl Environment
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The identifier of the FinSpace environment.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the AWS account in which the FinSpace environment is created.
sourcepub fn status(&self) -> Option<&EnvironmentStatus>
pub fn status(&self) -> Option<&EnvironmentStatus>
The current status of creation of the FinSpace environment.
sourcepub fn environment_url(&self) -> Option<&str>
pub fn environment_url(&self) -> Option<&str>
The sign-in URL for the web application of your FinSpace environment.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the FinSpace environment.
sourcepub fn environment_arn(&self) -> Option<&str>
pub fn environment_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of your FinSpace environment.
sourcepub fn sage_maker_studio_domain_url(&self) -> Option<&str>
pub fn sage_maker_studio_domain_url(&self) -> Option<&str>
The URL of the integrated FinSpace notebook environment in your web application.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The KMS key id used to encrypt in the FinSpace environment.
sourcepub fn dedicated_service_account_id(&self) -> Option<&str>
pub fn dedicated_service_account_id(&self) -> Option<&str>
The AWS account ID of the dedicated service account associated with your FinSpace environment.
sourcepub fn federation_mode(&self) -> Option<&FederationMode>
pub fn federation_mode(&self) -> Option<&FederationMode>
The authentication mode for the environment.
sourcepub fn federation_parameters(&self) -> Option<&FederationParameters>
pub fn federation_parameters(&self) -> Option<&FederationParameters>
Configuration information when authentication mode is FEDERATED.
source§impl Environment
impl Environment
sourcepub fn builder() -> EnvironmentBuilder
pub fn builder() -> EnvironmentBuilder
Creates a new builder-style object to manufacture Environment
.
Trait Implementations§
source§impl Clone for Environment
impl Clone for Environment
source§fn clone(&self) -> Environment
fn clone(&self) -> Environment
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Environment
impl Debug for Environment
source§impl PartialEq for Environment
impl PartialEq for Environment
source§fn eq(&self, other: &Environment) -> bool
fn eq(&self, other: &Environment) -> bool
self
and other
values to be equal, and is used
by ==
.