GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::CodePipeline::CreateCustomActionType(3) User Contributed Perl Documentation Paws::CodePipeline::CreateCustomActionType(3)

Paws::CodePipeline::CreateCustomActionType - Arguments for method CreateCustomActionType on Paws::CodePipeline

This class represents the parameters used for calling the method CreateCustomActionType on the AWS CodePipeline service. Use the attributes of this class as arguments to method CreateCustomActionType.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateCustomActionType.

    my $codepipeline = Paws->service('CodePipeline');
    my $CreateCustomActionTypeOutput = $codepipeline->CreateCustomActionType(
      Category             => 'Source',
      InputArtifactDetails => {
        MaximumCount => 1,    # max: 5
        MinimumCount => 1,    # max: 5
      },
      OutputArtifactDetails => {
        MaximumCount => 1,    # max: 5
        MinimumCount => 1,    # max: 5
      },
      Provider                => 'MyActionProvider',
      Version                 => 'MyVersion',
      ConfigurationProperties => [
        {
          Key         => 1,
          Name        => 'MyActionConfigurationKey',    # min: 1, max: 50
          Required    => 1,
          Secret      => 1,
          Description => 'MyDescription',    # min: 1, max: 160; OPTIONAL
          Queryable   => 1,
          Type        => 'String',   # values: String, Number, Boolean; OPTIONAL
        },
        ...
      ],    # OPTIONAL
      Settings => {
        EntityUrlTemplate    => 'MyUrlTemplate',   # min: 1, max: 2048; OPTIONAL
        ExecutionUrlTemplate => 'MyUrlTemplate',   # min: 1, max: 2048; OPTIONAL
        RevisionUrlTemplate  => 'MyUrlTemplate',   # min: 1, max: 2048; OPTIONAL
        ThirdPartyConfigurationUrl => 'MyUrl',     # min: 1, max: 2048; OPTIONAL
      },    # OPTIONAL
      Tags => [
        {
          Key   => 'MyTagKey',      # min: 1, max: 128
          Value => 'MyTagValue',    # max: 256
        },
        ...
      ],    # OPTIONAL
    );
    # Results:
    my $ActionType = $CreateCustomActionTypeOutput->ActionType;
    my $Tags       = $CreateCustomActionTypeOutput->Tags;
    # Returns a L<Paws::CodePipeline::CreateCustomActionTypeOutput> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/codepipeline/CreateCustomActionType>

REQUIRED Category => Str

The category of the custom action, such as a build action or a test action.

Valid values are: "Source", "Build", "Deploy", "Test", "Invoke", "Approval"

The configuration properties for the custom action.

You can refer to a name in the configuration properties of the custom action within the URL templates by following the format of {Config:name}, as long as the configuration property is both required and not secret. For more information, see Create a Custom Action for a Pipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/how-to-create-custom-action.html).

REQUIRED InputArtifactDetails => Paws::CodePipeline::ArtifactDetails

The details of the input artifact for the action, such as its commit ID.

REQUIRED OutputArtifactDetails => Paws::CodePipeline::ArtifactDetails

The details of the output artifact of the action, such as its commit ID.

REQUIRED Provider => Str

The provider of the service used in the custom action, such as AWS CodeDeploy.

URLs that provide users information about this custom action.

The tags for the custom action.

REQUIRED Version => Str

The version identifier of the custom action.

This class forms part of Paws, documenting arguments for method CreateCustomActionType in Paws::CodePipeline

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.