public void DescribeComplianceByResourceMarshallTest() { var request = InstantiateClassGenerator.Execute <DescribeComplianceByResourceRequest>(); var marshaller = new DescribeComplianceByResourceRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content); Comparer.CompareObjectToJson <DescribeComplianceByResourceRequest>(request, jsonRequest); var webResponse = new WebResponseData { Headers = { { "x-amzn-RequestId", Guid.NewGuid().ToString() }, { "x-amz-crc32", "0" } } }; var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("DescribeComplianceByResource").ResponseStructure).Execute(); webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString()); UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse); var response = DescribeComplianceByResourceResponseUnmarshaller.Instance.Unmarshall(context) as DescribeComplianceByResourceResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
public void DescribeComplianceByResourceMarshallTest() { var request = InstantiateClassGenerator.Execute<DescribeComplianceByResourceRequest>(); var marshaller = new DescribeComplianceByResourceRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content); Comparer.CompareObjectToJson<DescribeComplianceByResourceRequest>(request,jsonRequest); var webResponse = new WebResponseData { Headers = { {"x-amzn-RequestId", Guid.NewGuid().ToString()}, {"x-amz-crc32","0"} } }; var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("DescribeComplianceByResource").ResponseStructure).Execute(); webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString()); UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse); var response = DescribeComplianceByResourceResponseUnmarshaller.Instance.Unmarshall(context) as DescribeComplianceByResourceResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
/// <summary> /// Indicates whether the specified AWS resources are compliant. If a resource is noncompliant, /// this action returns the number of AWS Config rules that the resource does not comply /// with. /// /// /// <para> /// A resource is compliant if it complies with all the AWS Config rules that evaluate /// it. It is noncompliant if it does not comply with one or more of these rules. /// </para> /// /// <para> /// If AWS Config has no current evaluation results for the resource, it returns <code>INSUFFICIENT_DATA</code>. /// This result might indicate one of the following conditions about the rules that evaluate /// the resource: <ul> <li>AWS Config has never invoked an evaluation for the rule. To /// check whether it has, use the <code>DescribeConfigRuleEvaluationStatus</code> action /// to get the <code>LastSuccessfulInvocationTime</code> and <code>LastFailedInvocationTime</code>.</li> /// <li>The rule's AWS Lambda function is failing to send evaluation results to AWS Config. /// Verify that the role that you assigned to your configuration recorder includes the /// <code>config:PutEvaluations</code> permission. If the rule is a customer managed rule, /// verify that the AWS Lambda execution role includes the <code>config:PutEvaluations</code> /// permission.</li> <li>The rule's AWS Lambda function has returned <code>NOT_APPLICABLE</code> /// for all evaluation results. This can occur if the resources were deleted or removed /// from the rule's scope.</li></ul> /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeComplianceByResource service method.</param> /// /// <returns>The response from the DescribeComplianceByResource service method, as returned by ConfigService.</returns> /// <exception cref="Amazon.ConfigService.Model.InvalidNextTokenException"> /// The specified next token is invalid. Specify the <code>nextToken</code> string that /// was returned in the previous response to get the next page of results. /// </exception> /// <exception cref="Amazon.ConfigService.Model.InvalidParameterValueException"> /// One or more of the specified parameters are invalid. Verify that your parameters are /// valid and try again. /// </exception> public DescribeComplianceByResourceResponse DescribeComplianceByResource(DescribeComplianceByResourceRequest request) { var marshaller = new DescribeComplianceByResourceRequestMarshaller(); var unmarshaller = DescribeComplianceByResourceResponseUnmarshaller.Instance; return Invoke<DescribeComplianceByResourceRequest,DescribeComplianceByResourceResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the DescribeComplianceByResource operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DescribeComplianceByResource operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task<DescribeComplianceByResourceResponse> DescribeComplianceByResourceAsync(DescribeComplianceByResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DescribeComplianceByResourceRequestMarshaller(); var unmarshaller = DescribeComplianceByResourceResponseUnmarshaller.Instance; return InvokeAsync<DescribeComplianceByResourceRequest,DescribeComplianceByResourceResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Initiates the asynchronous execution of the DescribeComplianceByResource operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DescribeComplianceByResource operation on AmazonConfigServiceClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeComplianceByResource /// operation.</returns> public IAsyncResult BeginDescribeComplianceByResource(DescribeComplianceByResourceRequest request, AsyncCallback callback, object state) { var marshaller = new DescribeComplianceByResourceRequestMarshaller(); var unmarshaller = DescribeComplianceByResourceResponseUnmarshaller.Instance; return BeginInvoke<DescribeComplianceByResourceRequest>(request, marshaller, unmarshaller, callback, state); }