Struct aws_sdk_sagemaker::input::CreateDomainInput
source · [−]#[non_exhaustive]pub struct CreateDomainInput {
pub domain_name: Option<String>,
pub auth_mode: Option<AuthMode>,
pub default_user_settings: Option<UserSettings>,
pub subnet_ids: Option<Vec<String>>,
pub vpc_id: Option<String>,
pub tags: Option<Vec<Tag>>,
pub app_network_access_type: Option<AppNetworkAccessType>,
pub home_efs_file_system_kms_key_id: Option<String>,
pub kms_key_id: Option<String>,
pub app_security_group_management: Option<AppSecurityGroupManagement>,
pub domain_settings: Option<DomainSettings>,
}
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_name: Option<String>
A name for the domain.
auth_mode: Option<AuthMode>
The mode of authentication that members use to access the domain.
default_user_settings: Option<UserSettings>
The default settings to use to create a user profile when UserSettings
isn't specified in the call to the CreateUserProfile
API.
SecurityGroups
is aggregated when specified in both calls. For all other settings in UserSettings
, the values specified in CreateUserProfile
take precedence over those specified in CreateDomain
.
subnet_ids: Option<Vec<String>>
The VPC subnets that Studio uses for communication.
vpc_id: Option<String>
The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
Tags to associated with the Domain. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search
API.
Tags that you specify for the Domain are also added to all Apps that the Domain launches.
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>
Use KmsKeyId
.
kms_key_id: Option<String>
SageMaker uses Amazon Web Services KMS to encrypt the EFS volume attached to the domain with an Amazon Web Services managed key by default. For more control, specify a customer managed key.
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.
domain_settings: Option<DomainSettings>
A collection of Domain
settings.
Implementations
sourceimpl CreateDomainInput
impl CreateDomainInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDomain, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDomain, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDomain
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateDomainInput
sourceimpl CreateDomainInput
impl CreateDomainInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
A name for the domain.
sourcepub fn auth_mode(&self) -> Option<&AuthMode>
pub fn auth_mode(&self) -> Option<&AuthMode>
The mode of authentication that members use to access the domain.
sourcepub fn default_user_settings(&self) -> Option<&UserSettings>
pub fn default_user_settings(&self) -> Option<&UserSettings>
The default settings to use to create a user profile when UserSettings
isn't specified in the call to the CreateUserProfile
API.
SecurityGroups
is aggregated when specified in both calls. For all other settings in UserSettings
, the values specified in CreateUserProfile
take precedence over those specified in CreateDomain
.
sourcepub fn subnet_ids(&self) -> Option<&[String]>
pub fn subnet_ids(&self) -> Option<&[String]>
The VPC subnets that Studio uses for communication.
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
Tags to associated with the Domain. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search
API.
Tags that you specify for the Domain are also added to all Apps that the Domain launches.
sourcepub fn app_network_access_type(&self) -> Option<&AppNetworkAccessType>
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
sourcepub fn home_efs_file_system_kms_key_id(&self) -> Option<&str>
pub fn home_efs_file_system_kms_key_id(&self) -> Option<&str>
Use KmsKeyId
.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
SageMaker uses Amazon Web Services KMS to encrypt the EFS volume attached to the domain with an Amazon Web Services managed key by default. For more control, specify a customer managed key.
sourcepub fn app_security_group_management(
&self
) -> Option<&AppSecurityGroupManagement>
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.
sourcepub fn domain_settings(&self) -> Option<&DomainSettings>
pub fn domain_settings(&self) -> Option<&DomainSettings>
A collection of Domain
settings.
Trait Implementations
sourceimpl Clone for CreateDomainInput
impl Clone for CreateDomainInput
sourcefn clone(&self) -> CreateDomainInput
fn clone(&self) -> CreateDomainInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateDomainInput
impl Debug for CreateDomainInput
sourceimpl PartialEq<CreateDomainInput> for CreateDomainInput
impl PartialEq<CreateDomainInput> for CreateDomainInput
sourcefn eq(&self, other: &CreateDomainInput) -> bool
fn eq(&self, other: &CreateDomainInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateDomainInput) -> bool
fn ne(&self, other: &CreateDomainInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateDomainInput
Auto Trait Implementations
impl RefUnwindSafe for CreateDomainInput
impl Send for CreateDomainInput
impl Sync for CreateDomainInput
impl Unpin for CreateDomainInput
impl UnwindSafe for CreateDomainInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more