interface AwsApiCallProps
Language | Type name |
---|---|
![]() | Amazon.CDK.IntegTests.AwsApiCallProps |
![]() | software.amazon.awscdk.integtests.AwsApiCallProps |
![]() | aws_cdk.integ_tests.AwsApiCallProps |
![]() | @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.