Get Model Invocation Logging Configuration
bedrock_get_model_invocation_logging_configuration | R Documentation |
Get the current configuration values for model invocation logging¶
Description¶
Get the current configuration values for model invocation logging.
Usage¶
Value¶
A list with the following syntax:
list(
loggingConfig = list(
cloudWatchConfig = list(
logGroupName = "string",
roleArn = "string",
largeDataDeliveryS3Config = list(
bucketName = "string",
keyPrefix = "string"
)
),
s3Config = list(
bucketName = "string",
keyPrefix = "string"
),
textDataDeliveryEnabled = TRUE|FALSE,
imageDataDeliveryEnabled = TRUE|FALSE,
embeddingDataDeliveryEnabled = TRUE|FALSE
)
)