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

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

Lists the principals associated with the specified thing.
/// 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 ListThingPrincipals ( string thingName ) : ListThingPrincipalsResponse
thingName string The name of the thing.
Результат ListThingPrincipalsResponse
        public ListThingPrincipalsResponse ListThingPrincipals(string thingName)
        {
            var request = new ListThingPrincipalsRequest();
            request.ThingName = thingName;
            return ListThingPrincipals(request);
        }

Same methods

AmazonIoTClient::ListThingPrincipals ( ListThingPrincipalsRequest request ) : ListThingPrincipalsResponse
AmazonIoTClient