interface CfnRuntimeProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrockagentcore.CfnRuntimeProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntimeProps |
![]() | software.amazon.awscdk.services.bedrockagentcore.CfnRuntimeProps |
![]() | aws_cdk.aws_bedrockagentcore.CfnRuntimeProps |
![]() | aws-cdk-lib » aws_bedrockagentcore » CfnRuntimeProps |
Properties for defining a CfnRuntime
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const cfnRuntimeProps: bedrockagentcore.CfnRuntimeProps = {
agentRuntimeArtifact: {
containerConfiguration: {
containerUri: 'containerUri',
},
},
agentRuntimeName: 'agentRuntimeName',
networkConfiguration: {
networkMode: 'networkMode',
},
roleArn: 'roleArn',
// the properties below are optional
authorizerConfiguration: {
customJwtAuthorizer: {
discoveryUrl: 'discoveryUrl',
// the properties below are optional
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
},
},
description: 'description',
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
protocolConfiguration: 'protocolConfiguration',
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
agent | IResolvable | Agent | |
agent | string | |
network | IResolvable | Network | |
role | string | |
authorizer | IResolvable | Authorizer | Configuration for the authorizer. |
description? | string | |
environment | { [string]: string } | IResolvable | Environment variable attributes. |
protocol | string | |
tags? | { [string]: string } | A map of tag keys and values. |
agentRuntimeArtifact
Type:
IResolvable
|
Agent
agentRuntimeName
Type:
string
networkConfiguration
Type:
IResolvable
|
Network
roleArn
Type:
string
authorizerConfiguration?
Type:
IResolvable
|
Authorizer
(optional)
Configuration for the authorizer.
description?
Type:
string
(optional)
environmentVariables?
Type:
{ [string]: string } |
IResolvable
(optional)
Environment variable attributes.
protocolConfiguration?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)
A map of tag keys and values.