Struct aws_sdk_s3control::operation::get_access_grants_instance::GetAccessGrantsInstanceOutput
source · #[non_exhaustive]pub struct GetAccessGrantsInstanceOutput {
pub access_grants_instance_arn: Option<String>,
pub access_grants_instance_id: Option<String>,
pub identity_center_arn: Option<String>,
pub created_at: Option<DateTime>,
/* private fields */
}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.access_grants_instance_arn: Option<String>The Amazon Resource Name (ARN) of the S3 Access Grants instance.
access_grants_instance_id: Option<String>The ID of the S3 Access Grants instance. The ID is default. You can have one S3 Access Grants instance per Region per account.
identity_center_arn: Option<String>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
created_at: Option<DateTime>The date and time when you created the S3 Access Grants instance.
Implementations§
source§impl GetAccessGrantsInstanceOutput
impl GetAccessGrantsInstanceOutput
sourcepub fn access_grants_instance_arn(&self) -> Option<&str>
pub fn access_grants_instance_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the S3 Access Grants instance.
sourcepub fn access_grants_instance_id(&self) -> Option<&str>
pub fn access_grants_instance_id(&self) -> Option<&str>
The ID of the S3 Access Grants instance. The ID is default. You can have one S3 Access Grants instance per Region per account.
sourcepub fn identity_center_arn(&self) -> Option<&str>
pub fn identity_center_arn(&self) -> Option<&str>
If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time when you created the S3 Access Grants instance.
source§impl GetAccessGrantsInstanceOutput
impl GetAccessGrantsInstanceOutput
sourcepub fn builder() -> GetAccessGrantsInstanceOutputBuilder
pub fn builder() -> GetAccessGrantsInstanceOutputBuilder
Creates a new builder-style object to manufacture GetAccessGrantsInstanceOutput.
Trait Implementations§
source§impl Clone for GetAccessGrantsInstanceOutput
impl Clone for GetAccessGrantsInstanceOutput
source§fn clone(&self) -> GetAccessGrantsInstanceOutput
fn clone(&self) -> GetAccessGrantsInstanceOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetAccessGrantsInstanceOutput
impl PartialEq for GetAccessGrantsInstanceOutput
source§fn eq(&self, other: &GetAccessGrantsInstanceOutput) -> bool
fn eq(&self, other: &GetAccessGrantsInstanceOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetAccessGrantsInstanceOutput
impl RequestId for GetAccessGrantsInstanceOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetAccessGrantsInstanceOutput
Auto Trait Implementations§
impl Freeze for GetAccessGrantsInstanceOutput
impl RefUnwindSafe for GetAccessGrantsInstanceOutput
impl Send for GetAccessGrantsInstanceOutput
impl Sync for GetAccessGrantsInstanceOutput
impl Unpin for GetAccessGrantsInstanceOutput
impl UnwindSafe for GetAccessGrantsInstanceOutput
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