LoggingConfig

class aws_cdk.aws_bedrockagentcore.LoggingConfig(*, destination, log_type)

Bases: object

Configuration for logging with log type and destination.

Parameters:
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 aws_bedrockagentcore as bedrockagentcore

# logging_destination: bedrockagentcore.LoggingDestination
# log_type: bedrockagentcore.LogType

logging_config = bedrockagentcore.LoggingConfig(
    destination=logging_destination,
    log_type=log_type
)

Attributes

destination

The destination for logs.

log_type

The type of logs to deliver.