Struct aws_sdk_directory::input::CreateMicrosoftAdInput
source · [−]#[non_exhaustive]pub struct CreateMicrosoftAdInput {
pub name: Option<String>,
pub short_name: Option<String>,
pub password: Option<String>,
pub description: Option<String>,
pub vpc_settings: Option<DirectoryVpcSettings>,
pub edition: Option<DirectoryEdition>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Creates an Managed Microsoft AD directory.
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 fully qualified domain name for the Managed Microsoft AD directory, such as corp.example.com
. This name will resolve inside your VPC only. It does not need to be publicly resolvable.
short_name: Option<String>
The NetBIOS name for your domain, such as CORP
. If you don't specify a NetBIOS name, it will default to the first part of your directory DNS. For example, CORP
for the directory DNS corp.example.com
.
password: Option<String>
The password for the default administrative user named Admin
.
If you need to change the password for the administrator account, you can use the ResetUserPassword
API call.
description: Option<String>
A description for the directory. This label will appear on the Amazon Web Services console Directory Details
page after the directory is created.
vpc_settings: Option<DirectoryVpcSettings>
Contains VPC information for the CreateDirectory
or CreateMicrosoftAD
operation.
edition: Option<DirectoryEdition>
Managed Microsoft AD is available in two editions: Standard
and Enterprise
. Enterprise
is the default.
The tags to be assigned to the Managed Microsoft AD directory.
Implementations
sourceimpl CreateMicrosoftAdInput
impl CreateMicrosoftAdInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateMicrosoftAD, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateMicrosoftAD, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateMicrosoftAD
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateMicrosoftAdInput
sourceimpl CreateMicrosoftAdInput
impl CreateMicrosoftAdInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The fully qualified domain name for the Managed Microsoft AD directory, such as corp.example.com
. This name will resolve inside your VPC only. It does not need to be publicly resolvable.
sourcepub fn short_name(&self) -> Option<&str>
pub fn short_name(&self) -> Option<&str>
The NetBIOS name for your domain, such as CORP
. If you don't specify a NetBIOS name, it will default to the first part of your directory DNS. For example, CORP
for the directory DNS corp.example.com
.
sourcepub fn password(&self) -> Option<&str>
pub fn password(&self) -> Option<&str>
The password for the default administrative user named Admin
.
If you need to change the password for the administrator account, you can use the ResetUserPassword
API call.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the directory. This label will appear on the Amazon Web Services console Directory Details
page after the directory is created.
sourcepub fn vpc_settings(&self) -> Option<&DirectoryVpcSettings>
pub fn vpc_settings(&self) -> Option<&DirectoryVpcSettings>
Contains VPC information for the CreateDirectory
or CreateMicrosoftAD
operation.
sourcepub fn edition(&self) -> Option<&DirectoryEdition>
pub fn edition(&self) -> Option<&DirectoryEdition>
Managed Microsoft AD is available in two editions: Standard
and Enterprise
. Enterprise
is the default.
The tags to be assigned to the Managed Microsoft AD directory.
Trait Implementations
sourceimpl Clone for CreateMicrosoftAdInput
impl Clone for CreateMicrosoftAdInput
sourcefn clone(&self) -> CreateMicrosoftAdInput
fn clone(&self) -> CreateMicrosoftAdInput
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 CreateMicrosoftAdInput
impl Debug for CreateMicrosoftAdInput
sourceimpl PartialEq<CreateMicrosoftAdInput> for CreateMicrosoftAdInput
impl PartialEq<CreateMicrosoftAdInput> for CreateMicrosoftAdInput
sourcefn eq(&self, other: &CreateMicrosoftAdInput) -> bool
fn eq(&self, other: &CreateMicrosoftAdInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateMicrosoftAdInput) -> bool
fn ne(&self, other: &CreateMicrosoftAdInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateMicrosoftAdInput
Auto Trait Implementations
impl RefUnwindSafe for CreateMicrosoftAdInput
impl Send for CreateMicrosoftAdInput
impl Sync for CreateMicrosoftAdInput
impl Unpin for CreateMicrosoftAdInput
impl UnwindSafe for CreateMicrosoftAdInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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> 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