interface AwsApiCallOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.IntegTests.AwsApiCallOptions |
Java | software.amazon.awscdk.integtests.AwsApiCallOptions |
Python | aws_cdk.integ_tests.AwsApiCallOptions |
TypeScript (source) | @aws-cdk/integ-tests » AwsApiCallOptions |
Options to perform an AWS JavaScript V2 API call.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as integ_tests from '@aws-cdk/integ-tests';
declare const parameters: any;
const awsApiCallOptions: integ_tests.AwsApiCallOptions = {
api: 'api',
service: 'service',
// the properties below are optional
parameters: parameters,
};
Properties
Name | Type | Description |
---|---|---|
api | string | The api call to make, i.e. getBucketLifecycle. |
service | string | The AWS service, i.e. S3. |
parameters? | any | Any parameters to pass to the api call. |
api
Type:
string
The api call to make, i.e. getBucketLifecycle.
service
Type:
string
The AWS service, i.e. S3.
parameters?
Type:
any
(optional, default: no parameters)
Any parameters to pass to the api call.