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

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

Gets information about the specified rule.
/// An unexpected error has occurred. /// /// The request is not valid. /// /// The service is temporarily unavailable. /// /// You are not authorized to perform this operation. ///
public GetTopicRule ( string ruleName ) : GetTopicRuleResponse
ruleName string The name of the rule.
Результат GetTopicRuleResponse
        public GetTopicRuleResponse GetTopicRule(string ruleName)
        {
            var request = new GetTopicRuleRequest();
            request.RuleName = ruleName;
            return GetTopicRule(request);
        }

Same methods

AmazonIoTClient::GetTopicRule ( GetTopicRuleRequest request ) : GetTopicRuleResponse
AmazonIoTClient