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

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

Lists the things associated with the specified principal.
/// An unexpected error has occurred. /// /// The request is not valid. /// /// The specified resource does not exist. /// /// The service is temporarily unavailable. /// /// The rate exceeds the limit. /// /// You are not authorized to perform this operation. ///
public ListPrincipalThings ( string principal ) : ListPrincipalThingsResponse
principal string The principal.
Результат ListPrincipalThingsResponse
        public ListPrincipalThingsResponse ListPrincipalThings(string principal)
        {
            var request = new ListPrincipalThingsRequest();
            request.Principal = principal;
            return ListPrincipalThings(request);
        }

Same methods

AmazonIoTClient::ListPrincipalThings ( ListPrincipalThingsRequest request ) : ListPrincipalThingsResponse
AmazonIoTClient