Amazon.IoT.AmazonIoTClient.ListTopicRulesAsync C# (CSharp) Метод

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

Lists the rules for the specific topic.
/// An unexpected error has occurred. /// /// The request is not valid. /// /// The service is temporarily unavailable. ///
public ListTopicRulesAsync ( string topic, System cancellationToken = default(CancellationToken) ) : Task
topic string The topic.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<ListTopicRulesResponse> ListTopicRulesAsync(string topic, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new ListTopicRulesRequest();
            request.Topic = topic;
            return ListTopicRulesAsync(request, cancellationToken);
        }

Same methods

AmazonIoTClient::ListTopicRulesAsync ( ListTopicRulesRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonIoTClient