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 ==
.