CfnRuntimeLogsMixin

class aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimeLogsMixin(log_type, log_delivery)

Bases: Mixin

Contains information about an agent runtime. An agent runtime is the execution environment for a Amazon Bedrock Agent.

AgentCore Runtime is a secure, serverless runtime purpose-built for deploying and scaling dynamic AI agents and tools using any open-source framework including LangGraph, CrewAI, and Strands Agents, any protocol, and any model.

For more information about using agent runtime in Amazon Bedrock AgentCore, see Host agent or tools with Amazon Bedrock AgentCore Runtime .

See the Properties section below for descriptions of both the required and optional properties.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html

CloudformationResource:

AWS::BedrockAgentCore::Runtime

Mixin:

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.mixins_preview import aws_logs as logs
from aws_cdk.mixins_preview.aws_bedrockagentcore import mixins as bedrockagentcore_mixins

# logs_delivery: logs.ILogsDelivery

cfn_runtime_logs_mixin = bedrockagentcore_mixins.CfnRuntimeLogsMixin("logType", logs_delivery)

Create a mixin to enable vended logs for AWS::BedrockAgentCore::Runtime.

Parameters:
  • log_type (str) – Type of logs that are getting vended.

  • log_delivery (ILogsDelivery) – Object in charge of setting up the delivery destination and delivery connection.

Methods

apply_to(resource)

Apply vended logs configuration to the construct.

Parameters:

resource (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct (has vendedLogs property).

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

APPLICATION_LOGS = <aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimeApplicationLogs object>
TRACES = <aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimeTraces object>
USAGE_LOGS = <aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimeUsageLogs object>

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental