Struct aws_sdk_chatbot::operation::describe_slack_workspaces::builders::DescribeSlackWorkspacesOutputBuilder
source · #[non_exhaustive]pub struct DescribeSlackWorkspacesOutputBuilder { /* private fields */ }Expand description
A builder for DescribeSlackWorkspacesOutput.
Implementations§
source§impl DescribeSlackWorkspacesOutputBuilder
impl DescribeSlackWorkspacesOutputBuilder
sourcepub fn slack_workspaces(self, input: SlackWorkspace) -> Self
pub fn slack_workspaces(self, input: SlackWorkspace) -> Self
Appends an item to slack_workspaces.
To override the contents of this collection use set_slack_workspaces.
A list of Slack Workspaces registered with AWS Chatbot.
sourcepub fn set_slack_workspaces(self, input: Option<Vec<SlackWorkspace>>) -> Self
pub fn set_slack_workspaces(self, input: Option<Vec<SlackWorkspace>>) -> Self
A list of Slack Workspaces registered with AWS Chatbot.
sourcepub fn get_slack_workspaces(&self) -> &Option<Vec<SlackWorkspace>>
pub fn get_slack_workspaces(&self) -> &Option<Vec<SlackWorkspace>>
A list of Slack Workspaces registered with AWS Chatbot.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
sourcepub fn build(self) -> DescribeSlackWorkspacesOutput
pub fn build(self) -> DescribeSlackWorkspacesOutput
Consumes the builder and constructs a DescribeSlackWorkspacesOutput.
Trait Implementations§
source§impl Clone for DescribeSlackWorkspacesOutputBuilder
impl Clone for DescribeSlackWorkspacesOutputBuilder
source§fn clone(&self) -> DescribeSlackWorkspacesOutputBuilder
fn clone(&self) -> DescribeSlackWorkspacesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeSlackWorkspacesOutputBuilder
impl Default for DescribeSlackWorkspacesOutputBuilder
source§fn default() -> DescribeSlackWorkspacesOutputBuilder
fn default() -> DescribeSlackWorkspacesOutputBuilder
source§impl PartialEq for DescribeSlackWorkspacesOutputBuilder
impl PartialEq for DescribeSlackWorkspacesOutputBuilder
source§fn eq(&self, other: &DescribeSlackWorkspacesOutputBuilder) -> bool
fn eq(&self, other: &DescribeSlackWorkspacesOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeSlackWorkspacesOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeSlackWorkspacesOutputBuilder
impl RefUnwindSafe for DescribeSlackWorkspacesOutputBuilder
impl Send for DescribeSlackWorkspacesOutputBuilder
impl Sync for DescribeSlackWorkspacesOutputBuilder
impl Unpin for DescribeSlackWorkspacesOutputBuilder
impl UnwindSafe for DescribeSlackWorkspacesOutputBuilder
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