![]() |
![]()
| ![]() |
![]()
NAMEPaws::CodePipeline::CreateCustomActionType - Arguments for method CreateCustomActionType on Paws::CodePipeline DESCRIPTIONThis 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. SYNOPSISmy $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> ATTRIBUTESREQUIRED Category => StrThe category of the custom action, such as a build action or a test action. Valid values are: "Source", "Build", "Deploy", "Test", "Invoke", "Approval" ConfigurationProperties => ArrayRef[Paws::CodePipeline::ActionConfigurationProperty]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::ArtifactDetailsThe details of the input artifact for the action, such as its commit ID. REQUIRED OutputArtifactDetails => Paws::CodePipeline::ArtifactDetailsThe details of the output artifact of the action, such as its commit ID. REQUIRED Provider => StrThe provider of the service used in the custom action, such as AWS CodeDeploy. Settings => Paws::CodePipeline::ActionTypeSettingsURLs that provide users information about this custom action. Tags => ArrayRef[Paws::CodePipeline::Tag]The tags for the custom action. REQUIRED Version => StrThe version identifier of the custom action. SEE ALSOThis class forms part of Paws, documenting arguments for method CreateCustomActionType in Paws::CodePipeline BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|