Amazon.CodePipeline.AmazonCodePipelineClient.ListActionTypesAsync C# (CSharp) Метод

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

Gets a summary of all AWS CodePipeline action types associated with your account.
/// The next token was specified in an invalid format. Make sure that the next token you /// provided is the token returned by a previous call. /// /// The validation was specified in an invalid format. ///
public ListActionTypesAsync ( ActionOwner actionOwnerFilter, System cancellationToken = default(CancellationToken) ) : Task
actionOwnerFilter ActionOwner Filters the list of action types to those created by a specified entity.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<ListActionTypesResponse> ListActionTypesAsync(ActionOwner actionOwnerFilter, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new ListActionTypesRequest();
            request.ActionOwnerFilter = actionOwnerFilter;
            return ListActionTypesAsync(request, cancellationToken);
        }

Same methods

AmazonCodePipelineClient::ListActionTypesAsync ( Amazon.CodePipeline.Model.ListActionTypesRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonCodePipelineClient::ListActionTypesAsync ( System cancellationToken = default(CancellationToken) ) : Task
AmazonCodePipelineClient