interface ProviderOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.IntegTests.Alpha.ProviderOptions |
Go | github.com/aws/aws-cdk-go/awscdkintegtestsalpha/v2#ProviderOptions |
Java | software.amazon.awscdk.integtests.alpha.ProviderOptions |
Python | aws_cdk.integ_tests_alpha.ProviderOptions |
TypeScript (source) | @aws-cdk/integ-tests-alpha ยป ProviderOptions |
Shared options for configuring the assertion provider lambda function.
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';
import { aws_lambda as lambda } from 'aws-cdk-lib';
const providerOptions: integ_tests_alpha.ProviderOptions = {
providerLogLevel: lambda.ApplicationLogLevel.INFO,
};
Properties
| Name | Type | Description |
|---|---|---|
| provider | Application | The log level of the provider lambda function. |
providerLogLevel?
Type:
Application
(optional, default: ApplicationLogLevel.FATAL)
The log level of the provider lambda function.

.NET
Go
Java
Python
TypeScript (