#[non_exhaustive]pub struct DescribeAccessInput {
pub server_id: Option<String>,
pub external_id: Option<String>,
}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.server_id: Option<String>A system-assigned unique identifier for a server that has this access assigned.
external_id: Option<String>A unique identifier that is required to identify specific groups within your directory. The users of the group that you associate have access to your Amazon S3 or Amazon EFS resources over the enabled protocols using Transfer Family. If you know the group name, you can view the SID values by running the following command using Windows PowerShell.
Get-ADGroup -Filter {samAccountName -like "YourGroupName*"} -Properties * | Select SamAccountName,ObjectSid
In that command, replace YourGroupName with the name of your Active Directory group.
The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.@:/-
Implementations§
source§impl DescribeAccessInput
impl DescribeAccessInput
sourcepub fn server_id(&self) -> Option<&str>
pub fn server_id(&self) -> Option<&str>
A system-assigned unique identifier for a server that has this access assigned.
sourcepub fn external_id(&self) -> Option<&str>
pub fn external_id(&self) -> Option<&str>
A unique identifier that is required to identify specific groups within your directory. The users of the group that you associate have access to your Amazon S3 or Amazon EFS resources over the enabled protocols using Transfer Family. If you know the group name, you can view the SID values by running the following command using Windows PowerShell.
Get-ADGroup -Filter {samAccountName -like "YourGroupName*"} -Properties * | Select SamAccountName,ObjectSid
In that command, replace YourGroupName with the name of your Active Directory group.
The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces. You can also include underscores or any of the following characters: =,.@:/-
source§impl DescribeAccessInput
impl DescribeAccessInput
sourcepub fn builder() -> DescribeAccessInputBuilder
pub fn builder() -> DescribeAccessInputBuilder
Creates a new builder-style object to manufacture DescribeAccessInput.
Trait Implementations§
source§impl Clone for DescribeAccessInput
impl Clone for DescribeAccessInput
source§fn clone(&self) -> DescribeAccessInput
fn clone(&self) -> DescribeAccessInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeAccessInput
impl Debug for DescribeAccessInput
source§impl PartialEq for DescribeAccessInput
impl PartialEq for DescribeAccessInput
source§fn eq(&self, other: &DescribeAccessInput) -> bool
fn eq(&self, other: &DescribeAccessInput) -> bool
self and other values to be equal, and is used
by ==.