AWSSDKDocSamples.Amazon.CodePipeline.Generated.CodePipelineSamples.CodePipelineDeleteCustomActionType C# (CSharp) Метод

CodePipelineDeleteCustomActionType() публичный Метод

public CodePipelineDeleteCustomActionType ( ) : void
Результат void
        public void CodePipelineDeleteCustomActionType()
        {
            #region delete-a-custom-action-1449163239567

            var response = client.DeleteCustomActionType(new DeleteCustomActionTypeRequest 
            {
                Version = "1", // This is the current version number of the custom action.
                Category = "Build", // This is the type of action that the custom action is, for example build or test.
                Provider = "MyJenkinsProviderName" // This is the provider of the service used in the custom action. In this example, the custom action is for a Jenkins build, and the name of the provider is the one configured in the AWS CodePipeline Plugin for Jenkins
            });


            #endregion
        }