ProviderOptions

class aws_cdk.integ_tests_alpha.ProviderOptions(*, provider_log_level=None)

Bases: object

(experimental) Shared options for configuring the assertion provider lambda function.

Parameters:

provider_log_level (Optional[ApplicationLogLevel]) – (experimental) The log level of the provider lambda function. Default: ApplicationLogLevel.FATAL

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.integ_tests_alpha as integ_tests_alpha
from aws_cdk import aws_lambda as lambda_

provider_options = integ_tests_alpha.ProviderOptions(
    provider_log_level=lambda_.ApplicationLogLevel.INFO
)

Attributes

provider_log_level

(experimental) The log level of the provider lambda function.

Default:

ApplicationLogLevel.FATAL

Stability:

experimental