Amazon.SimpleSystemsManagement.AmazonSimpleSystemsManagementClient.DescribeInstanceInformationAsync C# (CSharp) Метод

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

Describes one or more of your instances. You can use this to get information about instances like the operating system platform, the SSM agent version (Linux), status etc. If you specify one or more instance IDs, it returns information for those instances. If you do not specify instance IDs, it returns information for all your instances. If you specify an instance ID that is not valid or an instance that you do not own, you receive an error.
/// An error occurred on the server side. /// /// The specified key is not valid. /// /// The following problems can cause this exception: /// /// /// /// You do not have permission to access the instance. /// /// /// /// The SSM agent is not running. On managed instances and Linux instances, verify that /// the SSM agent is running. On EC2 Windows instances, verify that the EC2Config service /// is running. /// /// /// /// The SSM agent or EC2Config service is not registered to the SSM endpoint. Try reinstalling /// the SSM agent or EC2Config service. /// /// /// /// The instance is not in valid state. Valid states are: Running, Pending, Stopped, Stopping. /// Invalid states are: Shutting-down and Terminated. /// /// /// The specified filter value is not valid. /// /// The specified token is not valid. ///
public DescribeInstanceInformationAsync ( System cancellationToken = default(CancellationToken) ) : Task
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<DescribeInstanceInformationResponse> DescribeInstanceInformationAsync(System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            return DescribeInstanceInformationAsync(new DescribeInstanceInformationRequest(), cancellationToken);
        }

Same methods

AmazonSimpleSystemsManagementClient::DescribeInstanceInformationAsync ( DescribeInstanceInformationRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonSimpleSystemsManagementClient