/// <summary> /// Initiates the asynchronous execution of the GetAssessmentTelemetry operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetAssessmentTelemetry 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<GetAssessmentTelemetryResponse> GetAssessmentTelemetryAsync(GetAssessmentTelemetryRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new GetAssessmentTelemetryRequestMarshaller(); var unmarshaller = GetAssessmentTelemetryResponseUnmarshaller.Instance; return InvokeAsync<GetAssessmentTelemetryRequest,GetAssessmentTelemetryResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Returns the metadata about the telemetry (application behavioral data) for the assessment /// specified by the assessment ARN. /// </summary> /// <param name="assessmentArn">The ARN specifying the assessment the telemetry of which you want to obtain.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the GetAssessmentTelemetry service method, as returned by Inspector.</returns> /// <exception cref="Amazon.Inspector.Model.AccessDeniedException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InternalException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InvalidInputException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.NoSuchEntityException"> /// /// </exception> public Task<GetAssessmentTelemetryResponse> GetAssessmentTelemetryAsync(string assessmentArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var request = new GetAssessmentTelemetryRequest(); request.AssessmentArn = assessmentArn; return GetAssessmentTelemetryAsync(request, cancellationToken); }
/// <summary> /// Initiates the asynchronous execution of the GetAssessmentTelemetry operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the GetAssessmentTelemetry operation on AmazonInspectorClient.</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 EndGetAssessmentTelemetry /// operation.</returns> public IAsyncResult BeginGetAssessmentTelemetry(GetAssessmentTelemetryRequest request, AsyncCallback callback, object state) { var marshaller = new GetAssessmentTelemetryRequestMarshaller(); var unmarshaller = GetAssessmentTelemetryResponseUnmarshaller.Instance; return BeginInvoke<GetAssessmentTelemetryRequest>(request, marshaller, unmarshaller, callback, state); }
internal GetAssessmentTelemetryResponse GetAssessmentTelemetry(GetAssessmentTelemetryRequest request) { var marshaller = new GetAssessmentTelemetryRequestMarshaller(); var unmarshaller = GetAssessmentTelemetryResponseUnmarshaller.Instance; return Invoke<GetAssessmentTelemetryRequest,GetAssessmentTelemetryResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Returns the metadata about the telemetry (application behavioral data) for the assessment /// specified by the assessment ARN. /// </summary> /// <param name="assessmentArn">The ARN specifying the assessment the telemetry of which you want to obtain.</param> /// /// <returns>The response from the GetAssessmentTelemetry service method, as returned by Inspector.</returns> /// <exception cref="Amazon.Inspector.Model.AccessDeniedException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InternalException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.InvalidInputException"> /// /// </exception> /// <exception cref="Amazon.Inspector.Model.NoSuchEntityException"> /// /// </exception> public GetAssessmentTelemetryResponse GetAssessmentTelemetry(string assessmentArn) { var request = new GetAssessmentTelemetryRequest(); request.AssessmentArn = assessmentArn; return GetAssessmentTelemetry(request); }