Struct aws_sdk_chatbot::operation::delete_microsoft_teams_configured_team::DeleteMicrosoftTeamsConfiguredTeamInput
source · #[non_exhaustive]pub struct DeleteMicrosoftTeamsConfiguredTeamInput {
pub team_id: Option<String>,
}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.team_id: Option<String>The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS Chatbot Administrator Guide.
Implementations§
source§impl DeleteMicrosoftTeamsConfiguredTeamInput
impl DeleteMicrosoftTeamsConfiguredTeamInput
sourcepub fn team_id(&self) -> Option<&str>
pub fn team_id(&self) -> Option<&str>
The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS Chatbot Administrator Guide.
source§impl DeleteMicrosoftTeamsConfiguredTeamInput
impl DeleteMicrosoftTeamsConfiguredTeamInput
sourcepub fn builder() -> DeleteMicrosoftTeamsConfiguredTeamInputBuilder
pub fn builder() -> DeleteMicrosoftTeamsConfiguredTeamInputBuilder
Creates a new builder-style object to manufacture DeleteMicrosoftTeamsConfiguredTeamInput.
Trait Implementations§
source§impl Clone for DeleteMicrosoftTeamsConfiguredTeamInput
impl Clone for DeleteMicrosoftTeamsConfiguredTeamInput
source§fn clone(&self) -> DeleteMicrosoftTeamsConfiguredTeamInput
fn clone(&self) -> DeleteMicrosoftTeamsConfiguredTeamInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DeleteMicrosoftTeamsConfiguredTeamInput
impl PartialEq for DeleteMicrosoftTeamsConfiguredTeamInput
source§fn eq(&self, other: &DeleteMicrosoftTeamsConfiguredTeamInput) -> bool
fn eq(&self, other: &DeleteMicrosoftTeamsConfiguredTeamInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteMicrosoftTeamsConfiguredTeamInput
Auto Trait Implementations§
impl Freeze for DeleteMicrosoftTeamsConfiguredTeamInput
impl RefUnwindSafe for DeleteMicrosoftTeamsConfiguredTeamInput
impl Send for DeleteMicrosoftTeamsConfiguredTeamInput
impl Sync for DeleteMicrosoftTeamsConfiguredTeamInput
impl Unpin for DeleteMicrosoftTeamsConfiguredTeamInput
impl UnwindSafe for DeleteMicrosoftTeamsConfiguredTeamInput
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