AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the ListActionTypes operation. Gets a summary of all CodePipeline action types associated with your account.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.CodePipeline.AmazonCodePipelineRequest
      Amazon.CodePipeline.Model.ListActionTypesRequest

Namespace: Amazon.CodePipeline.Model
Assembly: AWSSDK.CodePipeline.dll
Version: 3.x.y.z

Syntax

C#
public class ListActionTypesRequest : AmazonCodePipelineRequest
         IAmazonWebServiceRequest

The ListActionTypesRequest type exposes the following members

Constructors

NameDescription
Public Method ListActionTypesRequest()

Properties

NameTypeDescription
Public Property ActionOwnerFilter Amazon.CodePipeline.ActionOwner

Gets and sets the property ActionOwnerFilter.

Filters the list of action types to those created by a specified entity.

Public Property NextToken System.String

Gets and sets the property NextToken.

An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.

Public Property RegionFilter System.String

Gets and sets the property RegionFilter.

The Region to filter on for the list of action types.

Examples

Used by itself, ListActionTypes returns the structure of all AWS CodePipeline actions available to your AWS account. This example uses the actionOwnerFilter option to limit the response to include only the structure of all custom actions defined for the account.

View a summary of all action types associated with your account


var client = new AmazonCodePipelineClient();
var response = client.ListActionTypes(new ListActionTypesRequest 
{
    ActionOwnerFilter = "Custom",
    NextToken = ""
});

List<ActionType> actionTypes = response.ActionTypes;
string nextToken = response.NextToken; // nextToken is optional. Its operation is reserved for future use.

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5