[][src]Struct rusoto_sagemaker::CreateDomainRequest

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

Fields

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.

home_efs_file_system_kms_key_id: Option<String>

The AWS Key Management Service (KMS) encryption key ID. Encryption with a customer master key (CMK) is not supported.

subnet_ids: Vec<String>

The VPC subnets to use for communication with the EFS volume.

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) to use for communication with the EFS volume.

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> 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.