1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// When writing a match expression against `NotificationSeverityLevel`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let notificationseveritylevel = unimplemented!();
/// match notificationseveritylevel {
/// NotificationSeverityLevel::All => { /* ... */ },
/// NotificationSeverityLevel::High => { /* ... */ },
/// NotificationSeverityLevel::None => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `notificationseveritylevel` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `NotificationSeverityLevel::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `NotificationSeverityLevel::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `NotificationSeverityLevel::NewFeature` is defined.
/// Specifically, when `notificationseveritylevel` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `NotificationSeverityLevel::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum NotificationSeverityLevel {
#[allow(missing_docs)] // documentation missing in model
All,
#[allow(missing_docs)] // documentation missing in model
High,
#[allow(missing_docs)] // documentation missing in model
None,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for NotificationSeverityLevel {
fn from(s: &str) -> Self {
match s {
"all" => NotificationSeverityLevel::All,
"high" => NotificationSeverityLevel::High,
"none" => NotificationSeverityLevel::None,
other => NotificationSeverityLevel::Unknown(crate::types::UnknownVariantValue(
other.to_owned(),
)),
}
}
}
impl std::str::FromStr for NotificationSeverityLevel {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(NotificationSeverityLevel::from(s))
}
}
impl NotificationSeverityLevel {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
NotificationSeverityLevel::All => "all",
NotificationSeverityLevel::High => "high",
NotificationSeverityLevel::None => "none",
NotificationSeverityLevel::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["all", "high", "none"]
}
}
impl AsRef<str> for NotificationSeverityLevel {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// When writing a match expression against `AccountType`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let accounttype = unimplemented!();
/// match accounttype {
/// AccountType::Management => { /* ... */ },
/// AccountType::Member => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `accounttype` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `AccountType::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `AccountType::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `AccountType::NewFeature` is defined.
/// Specifically, when `accounttype` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `AccountType::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum AccountType {
#[allow(missing_docs)] // documentation missing in model
Management,
#[allow(missing_docs)] // documentation missing in model
Member,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for AccountType {
fn from(s: &str) -> Self {
match s {
"management" => AccountType::Management,
"member" => AccountType::Member,
other => AccountType::Unknown(crate::types::UnknownVariantValue(other.to_owned())),
}
}
}
impl std::str::FromStr for AccountType {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(AccountType::from(s))
}
}
impl AccountType {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
AccountType::Management => "management",
AccountType::Member => "member",
AccountType::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["management", "member"]
}
}
impl AsRef<str> for AccountType {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// <p>The configuration for a Slack workspace that you added to an Amazon Web Services account.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct SlackWorkspaceConfiguration {
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
#[doc(hidden)]
pub team_id: std::option::Option<std::string::String>,
/// <p>The name of the Slack workspace.</p>
#[doc(hidden)]
pub team_name: std::option::Option<std::string::String>,
/// <p>Whether to allow member accounts to authorize Slack workspaces. Member accounts must be part of an organization in Organizations.</p>
#[doc(hidden)]
pub allow_organization_member_account: std::option::Option<bool>,
}
impl SlackWorkspaceConfiguration {
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
pub fn team_id(&self) -> std::option::Option<&str> {
self.team_id.as_deref()
}
/// <p>The name of the Slack workspace.</p>
pub fn team_name(&self) -> std::option::Option<&str> {
self.team_name.as_deref()
}
/// <p>Whether to allow member accounts to authorize Slack workspaces. Member accounts must be part of an organization in Organizations.</p>
pub fn allow_organization_member_account(&self) -> std::option::Option<bool> {
self.allow_organization_member_account
}
}
/// See [`SlackWorkspaceConfiguration`](crate::model::SlackWorkspaceConfiguration).
pub mod slack_workspace_configuration {
/// A builder for [`SlackWorkspaceConfiguration`](crate::model::SlackWorkspaceConfiguration).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) team_id: std::option::Option<std::string::String>,
pub(crate) team_name: std::option::Option<std::string::String>,
pub(crate) allow_organization_member_account: std::option::Option<bool>,
}
impl Builder {
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
pub fn team_id(mut self, input: impl Into<std::string::String>) -> Self {
self.team_id = Some(input.into());
self
}
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
pub fn set_team_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.team_id = input;
self
}
/// <p>The name of the Slack workspace.</p>
pub fn team_name(mut self, input: impl Into<std::string::String>) -> Self {
self.team_name = Some(input.into());
self
}
/// <p>The name of the Slack workspace.</p>
pub fn set_team_name(mut self, input: std::option::Option<std::string::String>) -> Self {
self.team_name = input;
self
}
/// <p>Whether to allow member accounts to authorize Slack workspaces. Member accounts must be part of an organization in Organizations.</p>
pub fn allow_organization_member_account(mut self, input: bool) -> Self {
self.allow_organization_member_account = Some(input);
self
}
/// <p>Whether to allow member accounts to authorize Slack workspaces. Member accounts must be part of an organization in Organizations.</p>
pub fn set_allow_organization_member_account(
mut self,
input: std::option::Option<bool>,
) -> Self {
self.allow_organization_member_account = input;
self
}
/// Consumes the builder and constructs a [`SlackWorkspaceConfiguration`](crate::model::SlackWorkspaceConfiguration).
pub fn build(self) -> crate::model::SlackWorkspaceConfiguration {
crate::model::SlackWorkspaceConfiguration {
team_id: self.team_id,
team_name: self.team_name,
allow_organization_member_account: self.allow_organization_member_account,
}
}
}
}
impl SlackWorkspaceConfiguration {
/// Creates a new builder-style object to manufacture [`SlackWorkspaceConfiguration`](crate::model::SlackWorkspaceConfiguration).
pub fn builder() -> crate::model::slack_workspace_configuration::Builder {
crate::model::slack_workspace_configuration::Builder::default()
}
}
/// <p>The configuration for a Slack channel that you added for your Amazon Web Services account.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct SlackChannelConfiguration {
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
#[doc(hidden)]
pub team_id: std::option::Option<std::string::String>,
/// <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
#[doc(hidden)]
pub channel_id: std::option::Option<std::string::String>,
/// <p>The name of the Slack channel that you configured with the Amazon Web Services Support App for your Amazon Web Services account.</p>
#[doc(hidden)]
pub channel_name: std::option::Option<std::string::String>,
/// <p>Whether you want to get notified when a support case is created or reopened.</p>
#[doc(hidden)]
pub notify_on_create_or_reopen_case: std::option::Option<bool>,
/// <p>Whether you want to get notified when a support case has a new correspondence.</p>
#[doc(hidden)]
pub notify_on_add_correspondence_to_case: std::option::Option<bool>,
/// <p>Whether you want to get notified when a support case is resolved.</p>
#[doc(hidden)]
pub notify_on_resolve_case: std::option::Option<bool>,
/// <p>The case severity for a support case that you want to receive notifications.</p>
#[doc(hidden)]
pub notify_on_case_severity: std::option::Option<crate::model::NotificationSeverityLevel>,
/// <p>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 <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
#[doc(hidden)]
pub channel_role_arn: std::option::Option<std::string::String>,
}
impl SlackChannelConfiguration {
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
pub fn team_id(&self) -> std::option::Option<&str> {
self.team_id.as_deref()
}
/// <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
pub fn channel_id(&self) -> std::option::Option<&str> {
self.channel_id.as_deref()
}
/// <p>The name of the Slack channel that you configured with the Amazon Web Services Support App for your Amazon Web Services account.</p>
pub fn channel_name(&self) -> std::option::Option<&str> {
self.channel_name.as_deref()
}
/// <p>Whether you want to get notified when a support case is created or reopened.</p>
pub fn notify_on_create_or_reopen_case(&self) -> std::option::Option<bool> {
self.notify_on_create_or_reopen_case
}
/// <p>Whether you want to get notified when a support case has a new correspondence.</p>
pub fn notify_on_add_correspondence_to_case(&self) -> std::option::Option<bool> {
self.notify_on_add_correspondence_to_case
}
/// <p>Whether you want to get notified when a support case is resolved.</p>
pub fn notify_on_resolve_case(&self) -> std::option::Option<bool> {
self.notify_on_resolve_case
}
/// <p>The case severity for a support case that you want to receive notifications.</p>
pub fn notify_on_case_severity(
&self,
) -> std::option::Option<&crate::model::NotificationSeverityLevel> {
self.notify_on_case_severity.as_ref()
}
/// <p>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 <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
pub fn channel_role_arn(&self) -> std::option::Option<&str> {
self.channel_role_arn.as_deref()
}
}
/// See [`SlackChannelConfiguration`](crate::model::SlackChannelConfiguration).
pub mod slack_channel_configuration {
/// A builder for [`SlackChannelConfiguration`](crate::model::SlackChannelConfiguration).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) team_id: std::option::Option<std::string::String>,
pub(crate) channel_id: std::option::Option<std::string::String>,
pub(crate) channel_name: std::option::Option<std::string::String>,
pub(crate) notify_on_create_or_reopen_case: std::option::Option<bool>,
pub(crate) notify_on_add_correspondence_to_case: std::option::Option<bool>,
pub(crate) notify_on_resolve_case: std::option::Option<bool>,
pub(crate) notify_on_case_severity:
std::option::Option<crate::model::NotificationSeverityLevel>,
pub(crate) channel_role_arn: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
pub fn team_id(mut self, input: impl Into<std::string::String>) -> Self {
self.team_id = Some(input.into());
self
}
/// <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as <code>T012ABCDEFG</code>.</p>
pub fn set_team_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.team_id = input;
self
}
/// <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
pub fn channel_id(mut self, input: impl Into<std::string::String>) -> Self {
self.channel_id = Some(input.into());
self
}
/// <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
pub fn set_channel_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.channel_id = input;
self
}
/// <p>The name of the Slack channel that you configured with the Amazon Web Services Support App for your Amazon Web Services account.</p>
pub fn channel_name(mut self, input: impl Into<std::string::String>) -> Self {
self.channel_name = Some(input.into());
self
}
/// <p>The name of the Slack channel that you configured with the Amazon Web Services Support App for your Amazon Web Services account.</p>
pub fn set_channel_name(mut self, input: std::option::Option<std::string::String>) -> Self {
self.channel_name = input;
self
}
/// <p>Whether you want to get notified when a support case is created or reopened.</p>
pub fn notify_on_create_or_reopen_case(mut self, input: bool) -> Self {
self.notify_on_create_or_reopen_case = Some(input);
self
}
/// <p>Whether you want to get notified when a support case is created or reopened.</p>
pub fn set_notify_on_create_or_reopen_case(
mut self,
input: std::option::Option<bool>,
) -> Self {
self.notify_on_create_or_reopen_case = input;
self
}
/// <p>Whether you want to get notified when a support case has a new correspondence.</p>
pub fn notify_on_add_correspondence_to_case(mut self, input: bool) -> Self {
self.notify_on_add_correspondence_to_case = Some(input);
self
}
/// <p>Whether you want to get notified when a support case has a new correspondence.</p>
pub fn set_notify_on_add_correspondence_to_case(
mut self,
input: std::option::Option<bool>,
) -> Self {
self.notify_on_add_correspondence_to_case = input;
self
}
/// <p>Whether you want to get notified when a support case is resolved.</p>
pub fn notify_on_resolve_case(mut self, input: bool) -> Self {
self.notify_on_resolve_case = Some(input);
self
}
/// <p>Whether you want to get notified when a support case is resolved.</p>
pub fn set_notify_on_resolve_case(mut self, input: std::option::Option<bool>) -> Self {
self.notify_on_resolve_case = input;
self
}
/// <p>The case severity for a support case that you want to receive notifications.</p>
pub fn notify_on_case_severity(
mut self,
input: crate::model::NotificationSeverityLevel,
) -> Self {
self.notify_on_case_severity = Some(input);
self
}
/// <p>The case severity for a support case that you want to receive notifications.</p>
pub fn set_notify_on_case_severity(
mut self,
input: std::option::Option<crate::model::NotificationSeverityLevel>,
) -> Self {
self.notify_on_case_severity = input;
self
}
/// <p>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 <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
pub fn channel_role_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.channel_role_arn = Some(input.into());
self
}
/// <p>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 <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
pub fn set_channel_role_arn(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.channel_role_arn = input;
self
}
/// Consumes the builder and constructs a [`SlackChannelConfiguration`](crate::model::SlackChannelConfiguration).
pub fn build(self) -> crate::model::SlackChannelConfiguration {
crate::model::SlackChannelConfiguration {
team_id: self.team_id,
channel_id: self.channel_id,
channel_name: self.channel_name,
notify_on_create_or_reopen_case: self.notify_on_create_or_reopen_case,
notify_on_add_correspondence_to_case: self.notify_on_add_correspondence_to_case,
notify_on_resolve_case: self.notify_on_resolve_case,
notify_on_case_severity: self.notify_on_case_severity,
channel_role_arn: self.channel_role_arn,
}
}
}
}
impl SlackChannelConfiguration {
/// Creates a new builder-style object to manufacture [`SlackChannelConfiguration`](crate::model::SlackChannelConfiguration).
pub fn builder() -> crate::model::slack_channel_configuration::Builder {
crate::model::slack_channel_configuration::Builder::default()
}
}