Struct rusoto_codepipeline::ActionTypeId[][src]

pub struct ActionTypeId {
    pub category: String,
    pub owner: String,
    pub provider: String,
    pub version: String,
}

Represents information about an action type.

Fields

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 values below.

The creator of the action being called.

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.

A string that identifies the action type.

Trait Implementations

impl Default for ActionTypeId
[src]

Returns the "default value" for a type. Read more

impl Debug for ActionTypeId
[src]

Formats the value using the given formatter. Read more

impl Clone for ActionTypeId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ActionTypeId
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations