Struct aws_sdk_codepipeline::model::ActionDeclaration
source · #[non_exhaustive]pub struct ActionDeclaration { /* private fields */ }
Expand description
Represents information about an action declaration.
Implementations§
source§impl ActionDeclaration
impl ActionDeclaration
sourcepub fn action_type_id(&self) -> Option<&ActionTypeId>
pub fn action_type_id(&self) -> Option<&ActionTypeId>
Specifies the action type and the provider of the action.
sourcepub fn configuration(&self) -> Option<&HashMap<String, String>>
pub fn configuration(&self) -> Option<&HashMap<String, String>>
The action's configuration. These are key-value pairs that specify input values for an action. For more information, see Action Structure Requirements in CodePipeline. For the list of configuration properties for the AWS CloudFormation action type in CodePipeline, see Configuration Properties Reference in the AWS CloudFormation User Guide. For template snippets with examples, see Using Parameter Override Functions with CodePipeline Pipelines in the AWS CloudFormation User Guide.
The values can be represented in either JSON or YAML format. For example, the JSON configuration item format is as follows:
JSON:
"Configuration" : { Key : Value },
sourcepub fn output_artifacts(&self) -> Option<&[OutputArtifact]>
pub fn output_artifacts(&self) -> Option<&[OutputArtifact]>
The name or ID of the result of the action declaration, such as a test or build artifact.
sourcepub fn input_artifacts(&self) -> Option<&[InputArtifact]>
pub fn input_artifacts(&self) -> Option<&[InputArtifact]>
The name or ID of the artifact consumed by the action, such as a test or build artifact.
source§impl ActionDeclaration
impl ActionDeclaration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionDeclaration
.
Trait Implementations§
source§impl Clone for ActionDeclaration
impl Clone for ActionDeclaration
source§fn clone(&self) -> ActionDeclaration
fn clone(&self) -> ActionDeclaration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more