pub struct ActionTypeIdentifier {
pub category: String,
pub owner: String,
pub provider: String,
pub version: String,
}
Expand description
Specifies the category, owner, provider, and version of the action type.
Fields§
§category: String
Defines what kind of action can be taken in the stage, one of the following:
-
Source
-
Build
-
Test
-
Deploy
-
Approval
-
Invoke
owner: String
The creator of the action type being called: AWS
or ThirdParty
.
provider: String
The provider of the action type being called. The provider name is supplied when the action type is created.
version: String
A string that describes the action type version.
Trait Implementations§
Source§impl Clone for ActionTypeIdentifier
impl Clone for ActionTypeIdentifier
Source§fn clone(&self) -> ActionTypeIdentifier
fn clone(&self) -> ActionTypeIdentifier
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ActionTypeIdentifier
impl Debug for ActionTypeIdentifier
Source§impl Default for ActionTypeIdentifier
impl Default for ActionTypeIdentifier
Source§fn default() -> ActionTypeIdentifier
fn default() -> ActionTypeIdentifier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionTypeIdentifier
impl<'de> Deserialize<'de> for ActionTypeIdentifier
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ActionTypeIdentifier
impl PartialEq for ActionTypeIdentifier
Source§impl Serialize for ActionTypeIdentifier
impl Serialize for ActionTypeIdentifier
impl StructuralPartialEq for ActionTypeIdentifier
Auto Trait Implementations§
impl Freeze for ActionTypeIdentifier
impl RefUnwindSafe for ActionTypeIdentifier
impl Send for ActionTypeIdentifier
impl Sync for ActionTypeIdentifier
impl Unpin for ActionTypeIdentifier
impl UnwindSafe for ActionTypeIdentifier
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
Mutably borrows from an owned value. Read more