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
//! Enum sets and input-validation helpers for AWS CodePipeline.
//!
//! Enum value lists are transcribed verbatim from the CodePipeline Smithy
//! model (`aws-models/codepipeline.json`). A value outside the model set is
//! rejected with the operation's declared `ValidationException`, matching AWS.
pub const ACTION_CATEGORY: & = &;
pub const ACTION_OWNER: & = &;
/// `ActionTypeOwner` for `GetActionType` / `ListActionTypes` filters.
pub const ACTION_TYPE_OWNER: & = &;
pub const RULE_OWNER: & = &;
pub const EXECUTION_MODE: & = &;
pub const PIPELINE_TYPE: & = &;
pub const APPROVAL_STATUS: & = &;
pub const STAGE_TRANSITION_TYPE: & = &;
pub const STAGE_RETRY_MODE: & = &;
pub const CONDITION_TYPE: & = &;
pub const FAILURE_TYPE: & = &;
/// Whether `value` is a member of the given model enum set.