LoggingProps

class aws_cdk.custom_resources.LoggingProps(*, log_api_response_data=None)

Bases: object

Properties used to initialize Logging.

Parameters:

log_api_response_data (Optional[bool]) – Whether or not to log data associated with the API call response. Default: true

ExampleMetadata:

fixture=_generated

Example:

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

logging_props = custom_resources.LoggingProps(
    log_api_response_data=False
)

Attributes

log_api_response_data

Whether or not to log data associated with the API call response.

Default:

true