Struct aws_sdk_codepipeline::types::ActionType
source · #[non_exhaustive]pub struct ActionType {
pub id: Option<ActionTypeId>,
pub settings: Option<ActionTypeSettings>,
pub action_configuration_properties: Option<Vec<ActionConfigurationProperty>>,
pub input_artifact_details: Option<ArtifactDetails>,
pub output_artifact_details: Option<ArtifactDetails>,
}
Expand description
Returns information about the details of an action type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<ActionTypeId>
Represents information about an action type.
settings: Option<ActionTypeSettings>
The settings for the action type.
action_configuration_properties: Option<Vec<ActionConfigurationProperty>>
The configuration properties for the action type.
input_artifact_details: Option<ArtifactDetails>
The details of the input artifact for the action, such as its commit ID.
output_artifact_details: Option<ArtifactDetails>
The details of the output artifact of the action, such as its commit ID.
Implementations§
source§impl ActionType
impl ActionType
sourcepub fn id(&self) -> Option<&ActionTypeId>
pub fn id(&self) -> Option<&ActionTypeId>
Represents information about an action type.
sourcepub fn settings(&self) -> Option<&ActionTypeSettings>
pub fn settings(&self) -> Option<&ActionTypeSettings>
The settings for the action type.
sourcepub fn action_configuration_properties(
&self
) -> Option<&[ActionConfigurationProperty]>
pub fn action_configuration_properties( &self ) -> Option<&[ActionConfigurationProperty]>
The configuration properties for the action type.
sourcepub fn input_artifact_details(&self) -> Option<&ArtifactDetails>
pub fn input_artifact_details(&self) -> Option<&ArtifactDetails>
The details of the input artifact for the action, such as its commit ID.
sourcepub fn output_artifact_details(&self) -> Option<&ArtifactDetails>
pub fn output_artifact_details(&self) -> Option<&ArtifactDetails>
The details of the output artifact of the action, such as its commit ID.
source§impl ActionType
impl ActionType
sourcepub fn builder() -> ActionTypeBuilder
pub fn builder() -> ActionTypeBuilder
Creates a new builder-style object to manufacture ActionType
.
Trait Implementations§
source§impl Clone for ActionType
impl Clone for ActionType
source§fn clone(&self) -> ActionType
fn clone(&self) -> ActionType
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 ActionType
impl Debug for ActionType
source§impl PartialEq<ActionType> for ActionType
impl PartialEq<ActionType> for ActionType
source§fn eq(&self, other: &ActionType) -> bool
fn eq(&self, other: &ActionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ActionType
Auto Trait Implementations§
impl RefUnwindSafe for ActionType
impl Send for ActionType
impl Sync for ActionType
impl Unpin for ActionType
impl UnwindSafe for ActionType
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