Struct aws_sdk_emr::types::StudioSummary
source · #[non_exhaustive]pub struct StudioSummary {
pub studio_id: Option<String>,
pub name: Option<String>,
pub vpc_id: Option<String>,
pub description: Option<String>,
pub url: Option<String>,
pub auth_mode: Option<AuthMode>,
pub creation_time: Option<DateTime>,
}Expand description
Details for an Amazon EMR Studio, including ID, Name, VPC, and Description. To fetch additional details such as subnets, IAM roles, security groups, and tags for the Studio, use the DescribeStudio API.
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.studio_id: Option<String>The ID of the Amazon EMR Studio.
name: Option<String>The name of the Amazon EMR Studio.
vpc_id: Option<String>The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.
description: Option<String>The detailed description of the Amazon EMR Studio.
url: Option<String>The unique access URL of the Amazon EMR Studio.
auth_mode: Option<AuthMode>Specifies whether the Studio authenticates users using IAM or IAM Identity Center.
creation_time: Option<DateTime>The time when the Amazon EMR Studio was created.
Implementations§
source§impl StudioSummary
impl StudioSummary
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The detailed description of the Amazon EMR Studio.
sourcepub fn auth_mode(&self) -> Option<&AuthMode>
pub fn auth_mode(&self) -> Option<&AuthMode>
Specifies whether the Studio authenticates users using IAM or IAM Identity Center.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time when the Amazon EMR Studio was created.
source§impl StudioSummary
impl StudioSummary
sourcepub fn builder() -> StudioSummaryBuilder
pub fn builder() -> StudioSummaryBuilder
Creates a new builder-style object to manufacture StudioSummary.
Trait Implementations§
source§impl Clone for StudioSummary
impl Clone for StudioSummary
source§fn clone(&self) -> StudioSummary
fn clone(&self) -> StudioSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StudioSummary
impl Debug for StudioSummary
source§impl PartialEq for StudioSummary
impl PartialEq for StudioSummary
source§fn eq(&self, other: &StudioSummary) -> bool
fn eq(&self, other: &StudioSummary) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StudioSummary
Auto Trait Implementations§
impl Freeze for StudioSummary
impl RefUnwindSafe for StudioSummary
impl Send for StudioSummary
impl Sync for StudioSummary
impl Unpin for StudioSummary
impl UnwindSafe for StudioSummary
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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