Amazon.ConfigService.AmazonConfigServiceClient.GetResourceConfigHistory C# (CSharp) Method

GetResourceConfigHistory() public method

Returns a list of configuration items for the specified resource. The list contains details about each state of the resource during the specified time interval.

The response is paginated, and by default, AWS Config returns a limit of 10 configuration items per page. You can customize this number with the limit parameter. The response includes a nextToken string, and to get the next page of results, run the request again and enter this string for the nextToken parameter.

Each call to the API is limited to span a duration of seven days. It is likely that the number of records returned is smaller than the specified limit. In such cases, you can make another call, using the nextToken.

/// The specified limit is outside the allowable range. /// /// The specified next token is invalid. Specify the nextToken string that /// was returned in the previous response to get the next page of results. /// /// The specified time range is not valid. The earlier time is not chronologically before /// the later time. /// /// There are no configuration recorders available to provide the role needed to describe /// your resources. Create a configuration recorder. /// /// You have specified a resource that is either unknown or has not been discovered. /// /// The requested action is not valid. ///
public GetResourceConfigHistory ( Amazon.ConfigService.Model.GetResourceConfigHistoryRequest request ) : Amazon.ConfigService.Model.GetResourceConfigHistoryResponse
request Amazon.ConfigService.Model.GetResourceConfigHistoryRequest Container for the necessary parameters to execute the GetResourceConfigHistory service method.
return Amazon.ConfigService.Model.GetResourceConfigHistoryResponse
        public GetResourceConfigHistoryResponse GetResourceConfigHistory(GetResourceConfigHistoryRequest request)
        {
            var marshaller = new GetResourceConfigHistoryRequestMarshaller();
            var unmarshaller = GetResourceConfigHistoryResponseUnmarshaller.Instance;

            return Invoke<GetResourceConfigHistoryRequest,GetResourceConfigHistoryResponse>(request, marshaller, unmarshaller);
        }
AmazonConfigServiceClient