LoggingConfig

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

Bases: object

(experimental) Configuration for logging with log type and destination.

Parameters:
  • destination (LoggingDestination) – (experimental) The destination for logs.

  • log_type (LogType) – (experimental) The type of logs to deliver.

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.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha

# logging_destination: bedrock_agentcore_alpha.LoggingDestination
# log_type: bedrock_agentcore_alpha.LogType

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

Attributes

destination

(experimental) The destination for logs.

Stability:

experimental

log_type

(experimental) The type of logs to deliver.

Stability:

experimental