Struct aws_sdk_ssoadmin::operation::get_application_assignment_configuration::builders::GetApplicationAssignmentConfigurationOutputBuilder
source · #[non_exhaustive]pub struct GetApplicationAssignmentConfigurationOutputBuilder { /* private fields */ }
Expand description
A builder for GetApplicationAssignmentConfigurationOutput
.
Implementations§
source§impl GetApplicationAssignmentConfigurationOutputBuilder
impl GetApplicationAssignmentConfigurationOutputBuilder
sourcepub fn assignment_required(self, input: bool) -> Self
pub fn assignment_required(self, input: bool) -> Self
If AssignmentsRequired
is true
(default value), users don’t have access to the application unless an assignment is created using the CreateApplicationAssignment API. If false
, all users have access to the application.
sourcepub fn set_assignment_required(self, input: Option<bool>) -> Self
pub fn set_assignment_required(self, input: Option<bool>) -> Self
If AssignmentsRequired
is true
(default value), users don’t have access to the application unless an assignment is created using the CreateApplicationAssignment API. If false
, all users have access to the application.
sourcepub fn get_assignment_required(&self) -> &Option<bool>
pub fn get_assignment_required(&self) -> &Option<bool>
If AssignmentsRequired
is true
(default value), users don’t have access to the application unless an assignment is created using the CreateApplicationAssignment API. If false
, all users have access to the application.
sourcepub fn build(self) -> GetApplicationAssignmentConfigurationOutput
pub fn build(self) -> GetApplicationAssignmentConfigurationOutput
Consumes the builder and constructs a GetApplicationAssignmentConfigurationOutput
.
Trait Implementations§
source§impl Clone for GetApplicationAssignmentConfigurationOutputBuilder
impl Clone for GetApplicationAssignmentConfigurationOutputBuilder
source§fn clone(&self) -> GetApplicationAssignmentConfigurationOutputBuilder
fn clone(&self) -> GetApplicationAssignmentConfigurationOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetApplicationAssignmentConfigurationOutputBuilder
impl Default for GetApplicationAssignmentConfigurationOutputBuilder
source§fn default() -> GetApplicationAssignmentConfigurationOutputBuilder
fn default() -> GetApplicationAssignmentConfigurationOutputBuilder
source§impl PartialEq for GetApplicationAssignmentConfigurationOutputBuilder
impl PartialEq for GetApplicationAssignmentConfigurationOutputBuilder
source§fn eq(&self, other: &GetApplicationAssignmentConfigurationOutputBuilder) -> bool
fn eq(&self, other: &GetApplicationAssignmentConfigurationOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetApplicationAssignmentConfigurationOutputBuilder
Auto Trait Implementations§
impl Freeze for GetApplicationAssignmentConfigurationOutputBuilder
impl RefUnwindSafe for GetApplicationAssignmentConfigurationOutputBuilder
impl Send for GetApplicationAssignmentConfigurationOutputBuilder
impl Sync for GetApplicationAssignmentConfigurationOutputBuilder
impl Unpin for GetApplicationAssignmentConfigurationOutputBuilder
impl UnwindSafe for GetApplicationAssignmentConfigurationOutputBuilder
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