interface AwsApiCallProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.IntegTests.AwsApiCallProps |
Java | software.amazon.awscdk.integtests.AwsApiCallProps |
Python | aws_cdk.integ_tests.AwsApiCallProps |
TypeScript (source) | @aws-cdk/integ-tests » AwsApiCallProps |
Options for creating an SDKQuery provider.
Example
declare const myAppStack: Stack;
new AwsApiCall(myAppStack, 'GetObject', {
service: 'S3',
api: 'getObject',
});
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.

.NET
Java
Python
TypeScript (