Amazon.KinesisAnalytics.AmazonKinesisAnalyticsClient.ListApplications C# (CSharp) Method

ListApplications() public method

Returns a list of Amazon Kinesis Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status. If the response returns the HasMoreApplications value as true, you can send another request by adding the ExclusiveStartApplicationName in the request body, and set the value of this to the last application name from the previous response.

If you want detailed information about a specific application, use DescribeApplication.

This operation requires permissions to perform the kinesisanalytics:ListApplications action.

public ListApplications ( ListApplicationsRequest request ) : ListApplicationsResponse
request Amazon.KinesisAnalytics.Model.ListApplicationsRequest Container for the necessary parameters to execute the ListApplications service method.
return Amazon.KinesisAnalytics.Model.ListApplicationsResponse
        public ListApplicationsResponse ListApplications(ListApplicationsRequest request)
        {
            var marshaller = new ListApplicationsRequestMarshaller();
            var unmarshaller = ListApplicationsResponseUnmarshaller.Instance;

            return Invoke<ListApplicationsRequest,ListApplicationsResponse>(request, marshaller, unmarshaller);
        }