interface CfnRuntimeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnRuntimeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnRuntimeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnRuntimeMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnRuntimeMixinProps |
Properties for CfnRuntimePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const cfnRuntimeMixinProps: bedrockagentcore_mixins.CfnRuntimeMixinProps = {
agentRuntimeArtifact: {
codeConfiguration: {
code: {
s3: {
bucket: 'bucket',
prefix: 'prefix',
versionId: 'versionId',
},
},
entryPoint: ['entryPoint'],
runtime: 'runtime',
},
containerConfiguration: {
containerUri: 'containerUri',
},
},
agentRuntimeName: 'agentRuntimeName',
authorizerConfiguration: {
customJwtAuthorizer: {
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
discoveryUrl: 'discoveryUrl',
},
},
description: 'description',
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
lifecycleConfiguration: {
idleRuntimeSessionTimeout: 123,
maxLifetime: 123,
},
networkConfiguration: {
networkMode: 'networkMode',
networkModeConfig: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
},
protocolConfiguration: 'protocolConfiguration',
requestHeaderConfiguration: {
requestHeaderAllowlist: ['requestHeaderAllowlist'],
},
roleArn: 'roleArn',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | IResolvable | Agent | The artifact of the agent. |
| agent | string | The name of the AgentCore Runtime endpoint. |
| authorizer | IResolvable | Authorizer | Represents inbound authorization configuration options used to authenticate incoming requests. |
| description? | string | The agent runtime description. |
| environment | { [string]: string } | IResolvable | The environment variables for the agent. |
| lifecycle | IResolvable | Lifecycle | Configuration for managing the lifecycle of runtime sessions and resources. |
| network | IResolvable | Network | The network configuration. |
| protocol | string | The protocol configuration for an agent runtime. |
| request | IResolvable | Request | Configuration for HTTP request headers. |
| role | string | The Amazon Resource Name (ARN) for for the role. |
| tags? | { [string]: string } | The tags for the agent. |
agentRuntimeArtifact?
Type:
IResolvable | Agent
(optional)
The artifact of the agent.
agentRuntimeName?
Type:
string
(optional)
The name of the AgentCore Runtime endpoint.
authorizerConfiguration?
Type:
IResolvable | Authorizer
(optional)
Represents inbound authorization configuration options used to authenticate incoming requests.
description?
Type:
string
(optional)
The agent runtime description.
environmentVariables?
Type:
{ [string]: string } | IResolvable
(optional)
The environment variables for the agent.
lifecycleConfiguration?
Type:
IResolvable | Lifecycle
(optional)
Configuration for managing the lifecycle of runtime sessions and resources.
networkConfiguration?
Type:
IResolvable | Network
(optional)
The network configuration.
protocolConfiguration?
Type:
string
(optional)
The protocol configuration for an agent runtime.
This structure defines how the agent runtime communicates with clients.
requestHeaderConfiguration?
Type:
IResolvable | Request
(optional)
Configuration for HTTP request headers.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for for the role.
tags?
Type:
{ [string]: string }
(optional)
The tags for the agent.

.NET
Go
Java
Python
TypeScript