#[non_exhaustive]pub struct FSxWindowsFileServerAuthorizationConfig {
pub credentials_parameter: String,
pub domain: String,
}
Expand description
The authorization configuration details for Amazon FSx for Windows File Server file system. See FSxWindowsFileServerVolumeConfiguration in the Amazon ECS API Reference.
For more information and the input format, see Amazon FSx for Windows File Server Volumes in the Amazon Elastic Container Service Developer Guide.
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.credentials_parameter: String
The authorization credential option to use. The authorization credential options can be provided using either the Amazon Resource Name (ARN) of an Secrets Manager secret or SSM Parameter Store parameter. The ARN refers to the stored credentials.
domain: String
A fully qualified domain name hosted by an Directory Service Managed Microsoft AD (Active Directory) or self-hosted AD on Amazon EC2.
Implementations§
source§impl FSxWindowsFileServerAuthorizationConfig
impl FSxWindowsFileServerAuthorizationConfig
sourcepub fn credentials_parameter(&self) -> &str
pub fn credentials_parameter(&self) -> &str
The authorization credential option to use. The authorization credential options can be provided using either the Amazon Resource Name (ARN) of an Secrets Manager secret or SSM Parameter Store parameter. The ARN refers to the stored credentials.
sourcepub fn domain(&self) -> &str
pub fn domain(&self) -> &str
A fully qualified domain name hosted by an Directory Service Managed Microsoft AD (Active Directory) or self-hosted AD on Amazon EC2.
source§impl FSxWindowsFileServerAuthorizationConfig
impl FSxWindowsFileServerAuthorizationConfig
sourcepub fn builder() -> FSxWindowsFileServerAuthorizationConfigBuilder
pub fn builder() -> FSxWindowsFileServerAuthorizationConfigBuilder
Creates a new builder-style object to manufacture FSxWindowsFileServerAuthorizationConfig
.
Trait Implementations§
source§impl Clone for FSxWindowsFileServerAuthorizationConfig
impl Clone for FSxWindowsFileServerAuthorizationConfig
source§fn clone(&self) -> FSxWindowsFileServerAuthorizationConfig
fn clone(&self) -> FSxWindowsFileServerAuthorizationConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for FSxWindowsFileServerAuthorizationConfig
impl PartialEq for FSxWindowsFileServerAuthorizationConfig
source§fn eq(&self, other: &FSxWindowsFileServerAuthorizationConfig) -> bool
fn eq(&self, other: &FSxWindowsFileServerAuthorizationConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FSxWindowsFileServerAuthorizationConfig
Auto Trait Implementations§
impl Freeze for FSxWindowsFileServerAuthorizationConfig
impl RefUnwindSafe for FSxWindowsFileServerAuthorizationConfig
impl Send for FSxWindowsFileServerAuthorizationConfig
impl Sync for FSxWindowsFileServerAuthorizationConfig
impl Unpin for FSxWindowsFileServerAuthorizationConfig
impl UnwindSafe for FSxWindowsFileServerAuthorizationConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more