Struct aws_sdk_connect::types::builders::HierarchyGroupsBuilder
source · #[non_exhaustive]pub struct HierarchyGroupsBuilder { /* private fields */ }
Expand description
A builder for HierarchyGroups
.
Implementations§
source§impl HierarchyGroupsBuilder
impl HierarchyGroupsBuilder
sourcepub fn level1(self, input: AgentHierarchyGroup) -> Self
pub fn level1(self, input: AgentHierarchyGroup) -> Self
The group at level one of the agent hierarchy.
sourcepub fn set_level1(self, input: Option<AgentHierarchyGroup>) -> Self
pub fn set_level1(self, input: Option<AgentHierarchyGroup>) -> Self
The group at level one of the agent hierarchy.
sourcepub fn get_level1(&self) -> &Option<AgentHierarchyGroup>
pub fn get_level1(&self) -> &Option<AgentHierarchyGroup>
The group at level one of the agent hierarchy.
sourcepub fn level2(self, input: AgentHierarchyGroup) -> Self
pub fn level2(self, input: AgentHierarchyGroup) -> Self
The group at level two of the agent hierarchy.
sourcepub fn set_level2(self, input: Option<AgentHierarchyGroup>) -> Self
pub fn set_level2(self, input: Option<AgentHierarchyGroup>) -> Self
The group at level two of the agent hierarchy.
sourcepub fn get_level2(&self) -> &Option<AgentHierarchyGroup>
pub fn get_level2(&self) -> &Option<AgentHierarchyGroup>
The group at level two of the agent hierarchy.
sourcepub fn level3(self, input: AgentHierarchyGroup) -> Self
pub fn level3(self, input: AgentHierarchyGroup) -> Self
The group at level three of the agent hierarchy.
sourcepub fn set_level3(self, input: Option<AgentHierarchyGroup>) -> Self
pub fn set_level3(self, input: Option<AgentHierarchyGroup>) -> Self
The group at level three of the agent hierarchy.
sourcepub fn get_level3(&self) -> &Option<AgentHierarchyGroup>
pub fn get_level3(&self) -> &Option<AgentHierarchyGroup>
The group at level three of the agent hierarchy.
sourcepub fn level4(self, input: AgentHierarchyGroup) -> Self
pub fn level4(self, input: AgentHierarchyGroup) -> Self
The group at level four of the agent hierarchy.
sourcepub fn set_level4(self, input: Option<AgentHierarchyGroup>) -> Self
pub fn set_level4(self, input: Option<AgentHierarchyGroup>) -> Self
The group at level four of the agent hierarchy.
sourcepub fn get_level4(&self) -> &Option<AgentHierarchyGroup>
pub fn get_level4(&self) -> &Option<AgentHierarchyGroup>
The group at level four of the agent hierarchy.
sourcepub fn level5(self, input: AgentHierarchyGroup) -> Self
pub fn level5(self, input: AgentHierarchyGroup) -> Self
The group at level five of the agent hierarchy.
sourcepub fn set_level5(self, input: Option<AgentHierarchyGroup>) -> Self
pub fn set_level5(self, input: Option<AgentHierarchyGroup>) -> Self
The group at level five of the agent hierarchy.
sourcepub fn get_level5(&self) -> &Option<AgentHierarchyGroup>
pub fn get_level5(&self) -> &Option<AgentHierarchyGroup>
The group at level five of the agent hierarchy.
sourcepub fn build(self) -> HierarchyGroups
pub fn build(self) -> HierarchyGroups
Consumes the builder and constructs a HierarchyGroups
.
Trait Implementations§
source§impl Clone for HierarchyGroupsBuilder
impl Clone for HierarchyGroupsBuilder
source§fn clone(&self) -> HierarchyGroupsBuilder
fn clone(&self) -> HierarchyGroupsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HierarchyGroupsBuilder
impl Debug for HierarchyGroupsBuilder
source§impl Default for HierarchyGroupsBuilder
impl Default for HierarchyGroupsBuilder
source§fn default() -> HierarchyGroupsBuilder
fn default() -> HierarchyGroupsBuilder
source§impl PartialEq for HierarchyGroupsBuilder
impl PartialEq for HierarchyGroupsBuilder
impl StructuralPartialEq for HierarchyGroupsBuilder
Auto Trait Implementations§
impl Freeze for HierarchyGroupsBuilder
impl RefUnwindSafe for HierarchyGroupsBuilder
impl Send for HierarchyGroupsBuilder
impl Sync for HierarchyGroupsBuilder
impl Unpin for HierarchyGroupsBuilder
impl UnwindSafe for HierarchyGroupsBuilder
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