[][src]Struct rusoto_sagemaker::CreateDomainRequest

pub struct CreateDomainRequest {
    pub app_network_access_type: Option<String>,
    pub auth_mode: String,
    pub default_user_settings: UserSettings,
    pub domain_name: String,
    pub kms_key_id: Option<String>,
    pub subnet_ids: Vec<String>,
    pub tags: Option<Vec<Tag>>,
    pub vpc_id: String,
}

Fields

app_network_access_type: Option<String>

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

auth_mode: String

The mode of authentication that members use to access the domain.

default_user_settings: UserSettings

The default user settings.

domain_name: String

A name for the domain.

kms_key_id: Option<String>

SageMaker uses AWS KMS to encrypt the EFS volume attached to the domain with an AWS managed customer master key (CMK) by default. For more control, specify a customer managed CMK.

subnet_ids: Vec<String>

The VPC subnets that Studio uses for communication.

tags: Option<Vec<Tag>>

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.

vpc_id: String

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

Trait Implementations

impl Clone for CreateDomainRequest[src]

impl Debug for CreateDomainRequest[src]

impl Default for CreateDomainRequest[src]

impl PartialEq<CreateDomainRequest> for CreateDomainRequest[src]

impl Serialize for CreateDomainRequest[src]

impl StructuralPartialEq for CreateDomainRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.