Struct aws_sdk_codepipeline::model::ActionTypeDeclaration
source · [−]#[non_exhaustive]pub struct ActionTypeDeclaration {
pub description: Option<String>,
pub executor: Option<ActionTypeExecutor>,
pub id: Option<ActionTypeIdentifier>,
pub input_artifact_details: Option<ActionTypeArtifactDetails>,
pub output_artifact_details: Option<ActionTypeArtifactDetails>,
pub permissions: Option<ActionTypePermissions>,
pub properties: Option<Vec<ActionTypeProperty>>,
pub urls: Option<ActionTypeUrls>,
}
Expand description
The parameters for the action type definition that are provided when the action type is created or updated.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.description: Option<String>
The description for the action type to be updated.
executor: Option<ActionTypeExecutor>
Information about the executor for an action type that was created with any supported integration model.
id: Option<ActionTypeIdentifier>
The action category, owner, provider, and version of the action type to be updated.
input_artifact_details: Option<ActionTypeArtifactDetails>
Details for the artifacts, such as application files, to be worked on by the action. For example, the minimum and maximum number of input artifacts allowed.
output_artifact_details: Option<ActionTypeArtifactDetails>
Details for the output artifacts, such as a built application, that are the result of the action. For example, the minimum and maximum number of output artifacts allowed.
permissions: Option<ActionTypePermissions>
Details identifying the accounts with permissions to use the action type.
properties: Option<Vec<ActionTypeProperty>>
The properties of the action type to be updated.
urls: Option<ActionTypeUrls>
The links associated with the action type to be updated.
Implementations
The description for the action type to be updated.
Information about the executor for an action type that was created with any supported integration model.
The action category, owner, provider, and version of the action type to be updated.
Details for the artifacts, such as application files, to be worked on by the action. For example, the minimum and maximum number of input artifacts allowed.
Details for the output artifacts, such as a built application, that are the result of the action. For example, the minimum and maximum number of output artifacts allowed.
Details identifying the accounts with permissions to use the action type.
The properties of the action type to be updated.
The links associated with the action type to be updated.
Creates a new builder-style object to manufacture ActionTypeDeclaration
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ActionTypeDeclaration
impl Send for ActionTypeDeclaration
impl Sync for ActionTypeDeclaration
impl Unpin for ActionTypeDeclaration
impl UnwindSafe for ActionTypeDeclaration
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more