Struct aws_sdk_emr::types::builders::StudioSummaryBuilder
source · #[non_exhaustive]pub struct StudioSummaryBuilder { /* private fields */ }Expand description
A builder for StudioSummary.
Implementations§
source§impl StudioSummaryBuilder
impl StudioSummaryBuilder
sourcepub fn set_studio_id(self, input: Option<String>) -> Self
pub fn set_studio_id(self, input: Option<String>) -> Self
The ID of the Amazon EMR Studio.
sourcepub fn get_studio_id(&self) -> &Option<String>
pub fn get_studio_id(&self) -> &Option<String>
The ID of the Amazon EMR Studio.
sourcepub fn vpc_id(self, input: impl Into<String>) -> Self
pub fn vpc_id(self, input: impl Into<String>) -> Self
The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.
sourcepub fn set_vpc_id(self, input: Option<String>) -> Self
pub fn set_vpc_id(self, input: Option<String>) -> Self
The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.
sourcepub fn get_vpc_id(&self) -> &Option<String>
pub fn get_vpc_id(&self) -> &Option<String>
The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The detailed description of the Amazon EMR Studio.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The detailed description of the Amazon EMR Studio.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The detailed description of the Amazon EMR Studio.
sourcepub fn url(self, input: impl Into<String>) -> Self
pub fn url(self, input: impl Into<String>) -> Self
The unique access URL of the Amazon EMR Studio.
sourcepub fn set_url(self, input: Option<String>) -> Self
pub fn set_url(self, input: Option<String>) -> Self
The unique access URL of the Amazon EMR Studio.
sourcepub fn auth_mode(self, input: AuthMode) -> Self
pub fn auth_mode(self, input: AuthMode) -> Self
Specifies whether the Studio authenticates users using IAM or IAM Identity Center.
sourcepub fn set_auth_mode(self, input: Option<AuthMode>) -> Self
pub fn set_auth_mode(self, input: Option<AuthMode>) -> Self
Specifies whether the Studio authenticates users using IAM or IAM Identity Center.
sourcepub fn get_auth_mode(&self) -> &Option<AuthMode>
pub fn get_auth_mode(&self) -> &Option<AuthMode>
Specifies whether the Studio authenticates users using IAM or IAM Identity Center.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time when the Amazon EMR Studio was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time when the Amazon EMR Studio was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The time when the Amazon EMR Studio was created.
sourcepub fn build(self) -> StudioSummary
pub fn build(self) -> StudioSummary
Consumes the builder and constructs a StudioSummary.
Trait Implementations§
source§impl Clone for StudioSummaryBuilder
impl Clone for StudioSummaryBuilder
source§fn clone(&self) -> StudioSummaryBuilder
fn clone(&self) -> StudioSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StudioSummaryBuilder
impl Debug for StudioSummaryBuilder
source§impl Default for StudioSummaryBuilder
impl Default for StudioSummaryBuilder
source§fn default() -> StudioSummaryBuilder
fn default() -> StudioSummaryBuilder
source§impl PartialEq for StudioSummaryBuilder
impl PartialEq for StudioSummaryBuilder
source§fn eq(&self, other: &StudioSummaryBuilder) -> bool
fn eq(&self, other: &StudioSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StudioSummaryBuilder
Auto Trait Implementations§
impl Freeze for StudioSummaryBuilder
impl RefUnwindSafe for StudioSummaryBuilder
impl Send for StudioSummaryBuilder
impl Sync for StudioSummaryBuilder
impl Unpin for StudioSummaryBuilder
impl UnwindSafe for StudioSummaryBuilder
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