pub struct ActionTypeId {
pub category: String,
pub owner: String,
pub provider: String,
pub version: String,
}
Expand description
Represents information about an action type.
Fields§
§category: String
A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the following values.
owner: String
The creator of the action being called.
provider: String
The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy. For more information, see Valid Action Types and Providers in CodePipeline.
version: String
A string that describes the action version.
Trait Implementations§
Source§impl Clone for ActionTypeId
impl Clone for ActionTypeId
Source§fn clone(&self) -> ActionTypeId
fn clone(&self) -> ActionTypeId
Returns a copy 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 ActionTypeId
impl Debug for ActionTypeId
Source§impl Default for ActionTypeId
impl Default for ActionTypeId
Source§fn default() -> ActionTypeId
fn default() -> ActionTypeId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionTypeId
impl<'de> Deserialize<'de> for ActionTypeId
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 ActionTypeId
impl PartialEq for ActionTypeId
Source§impl Serialize for ActionTypeId
impl Serialize for ActionTypeId
impl StructuralPartialEq for ActionTypeId
Auto Trait Implementations§
impl Freeze for ActionTypeId
impl RefUnwindSafe for ActionTypeId
impl Send for ActionTypeId
impl Sync for ActionTypeId
impl Unpin for ActionTypeId
impl UnwindSafe for ActionTypeId
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