@aws-cdk_integ-tests-alpha.HttpRequest

interface HttpRequest 🔹

LanguageType name
.NETAmazon.CDK.IntegTests.Alpha.HttpRequest
Gogithub.com/aws/aws-cdk-go/awscdkintegtestsalpha/v2#HttpRequest
Javasoftware.amazon.awscdk.integtests.alpha.HttpRequest
Pythonaws_cdk.integ_tests_alpha.HttpRequest
TypeScript (source)@aws-cdk/integ-tests-alpha » HttpRequest

Request to the HttpCall resource.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as integ_tests_alpha from '@aws-cdk/integ-tests-alpha';
const httpRequest: integ_tests_alpha.HttpRequest = {
  parameters: {
    url: 'url',

    // the properties below are optional
    fetchOptions: {
      body: 'body',
      headers: {
        headersKey: 'headers',
      },
      method: 'method',
      port: 123,
    },
  },
};

Properties

NameTypeDescription
parameters🔹HttpRequestParametersParameters from the custom resource.

parameters🔹

Type: HttpRequestParameters

Parameters from the custom resource.