PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::CodePipeline::ActionDeclaration; use Moose; has ActionTypeId => (is => 'ro', isa => 'Paws::CodePipeline::ActionTypeId', request_name => 'actionTypeId', traits => ['NameInRequest'], required => 1); has Configuration => (is => 'ro', isa => 'Paws::CodePipeline::ActionConfigurationMap', request_name => 'configuration', traits => ['NameInRequest']); has InputArtifacts => (is => 'ro', isa => 'ArrayRef[Paws::CodePipeline::InputArtifact]', request_name => 'inputArtifacts', traits => ['NameInRequest']); has Name => (is => 'ro', isa => 'Str', request_name => 'name', traits => ['NameInRequest'], required => 1); has Namespace => (is => 'ro', isa => 'Str', request_name => 'namespace', traits => ['NameInRequest']); has OutputArtifacts => (is => 'ro', isa => 'ArrayRef[Paws::CodePipeline::OutputArtifact]', request_name => 'outputArtifacts', traits => ['NameInRequest']); has Region => (is => 'ro', isa => 'Str', request_name => 'region', traits => ['NameInRequest']); has RoleArn => (is => 'ro', isa => 'Str', request_name => 'roleArn', traits => ['NameInRequest']); has RunOrder => (is => 'ro', isa => 'Int', request_name => 'runOrder', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::CodePipeline::ActionDeclaration =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::CodePipeline::ActionDeclaration object: $service_obj->Method(Att1 => { ActionTypeId => $value, ..., RunOrder => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::CodePipeline::ActionDeclaration object: $result = $service_obj->Method(...); $result->Att1->ActionTypeId =head1 DESCRIPTION Represents information about an action declaration. =head1 ATTRIBUTES =head2 B ActionTypeId => L Specifies the action type and the provider of the action. =head2 Configuration => L 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 (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements). For the list of configuration properties for the AWS CloudFormation action type in CodePipeline, see Configuration Properties Reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-action-reference.html) in the I. For template snippets with examples, see Using Parameter Override Functions with CodePipeline Pipelines (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-parameter-override-functions.html) in the I. The values can be represented in either JSON or YAML format. For example, the JSON configuration item format is as follows: I C<"Configuration" : { Key : Value },> =head2 InputArtifacts => ArrayRef[L] The name or ID of the artifact consumed by the action, such as a test or build artifact. =head2 B Name => Str The action declaration's name. =head2 Namespace => Str The variable namespace associated with the action. All variables produced as output by this action fall under this namespace. =head2 OutputArtifacts => ArrayRef[L] The name or ID of the result of the action declaration, such as a test or build artifact. =head2 Region => Str The action declaration's AWS Region, such as us-east-1. =head2 RoleArn => Str The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline. =head2 RunOrder => Int The order in which actions are run. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut