interface SessionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.SessionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#SessionReference |
Java | software.amazon.awscdk.interfaces.bedrock.SessionReference |
Python | aws_cdk.interfaces.aws_bedrock.SessionReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » SessionReference |
A reference to a Session resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as interfaces_bedrock } from 'aws-cdk-lib/interfaces';
const sessionReference: interfaces_bedrock.SessionReference = {
sessionArn: 'sessionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| session | string | The SessionArn of the Session resource. |
sessionArn
Type:
string
The SessionArn of the Session resource.

.NET
Go
Java
Python
TypeScript