#[non_exhaustive]pub struct CreateSlackChannelConfigurationInput { /* private fields */ }
Implementations
sourceimpl CreateSlackChannelConfigurationInput
impl CreateSlackChannelConfigurationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSlackChannelConfiguration, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSlackChannelConfiguration, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateSlackChannelConfiguration
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateSlackChannelConfigurationInput
.
sourceimpl CreateSlackChannelConfigurationInput
impl CreateSlackChannelConfigurationInput
sourcepub fn team_id(&self) -> Option<&str>
pub fn team_id(&self) -> Option<&str>
The team ID in Slack. This ID uniquely identifies a Slack workspace.
sourcepub fn channel_id(&self) -> Option<&str>
pub fn channel_id(&self) -> Option<&str>
The channel ID in Slack. This ID identifies a channel within a Slack workspace.
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&str>
The name of the Slack channel that you configure for the Amazon Web Services Support App.
sourcepub fn notify_on_create_or_reopen_case(&self) -> Option<bool>
pub fn notify_on_create_or_reopen_case(&self) -> Option<bool>
Whether you want to get notified when a support case is created or reopened.
sourcepub fn notify_on_add_correspondence_to_case(&self) -> Option<bool>
pub fn notify_on_add_correspondence_to_case(&self) -> Option<bool>
Whether you want to get notified when a support case has a new correspondence.
sourcepub fn notify_on_resolve_case(&self) -> Option<bool>
pub fn notify_on_resolve_case(&self) -> Option<bool>
Whether you want to get notified when a support case is resolved.
sourcepub fn notify_on_case_severity(&self) -> Option<&NotificationSeverityLevel>
pub fn notify_on_case_severity(&self) -> Option<&NotificationSeverityLevel>
The case severity for a support case that you want to receive notifications.
If you specify high
or all
, you must specify true
for at least one of the following parameters:
-
notifyOnAddCorrespondenceToCase
-
notifyOnCreateOrReopenCase
-
notifyOnResolveCase
If you specify none
, the following parameters must be null or false
:
-
notifyOnAddCorrespondenceToCase
-
notifyOnCreateOrReopenCase
-
notifyOnResolveCase
If you don't specify these parameters in your request, they default to false
.
sourcepub fn channel_role_arn(&self) -> Option<&str>
pub fn channel_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that you want to use to perform operations on Amazon Web Services. For more information, see Managing access to the Amazon Web Services Support App in the Amazon Web Services Support User Guide.
Trait Implementations
sourceimpl Clone for CreateSlackChannelConfigurationInput
impl Clone for CreateSlackChannelConfigurationInput
sourcefn clone(&self) -> CreateSlackChannelConfigurationInput
fn clone(&self) -> CreateSlackChannelConfigurationInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<CreateSlackChannelConfigurationInput> for CreateSlackChannelConfigurationInput
impl PartialEq<CreateSlackChannelConfigurationInput> for CreateSlackChannelConfigurationInput
sourcefn eq(&self, other: &CreateSlackChannelConfigurationInput) -> bool
fn eq(&self, other: &CreateSlackChannelConfigurationInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for CreateSlackChannelConfigurationInput
Auto Trait Implementations
impl RefUnwindSafe for CreateSlackChannelConfigurationInput
impl Send for CreateSlackChannelConfigurationInput
impl Sync for CreateSlackChannelConfigurationInput
impl Unpin for CreateSlackChannelConfigurationInput
impl UnwindSafe for CreateSlackChannelConfigurationInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more