interface CfnSessionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnSessionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnSessionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnSessionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnSessionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnSessionMixinProps |
Properties for CfnSessionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-session.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const cfnSessionMixinProps: bedrock.CfnSessionMixinProps = {
encryptionKeyArn: 'encryptionKeyArn',
sessionMetadata: {
sessionMetadataKey: 'sessionMetadata',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string | The Amazon Resource Name (ARN) of the KMS key to use to encrypt the session data. |
| session | IResolvable | { [string]: string } | A map of key-value pairs containing attributes to be persisted across the session. |
| tags? | Cfn[] | A list of tags associated with the session. |
encryptionKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the KMS key to use to encrypt the session data.
sessionMetadata?
Type:
IResolvable | { [string]: string }
(optional)
A map of key-value pairs containing attributes to be persisted across the session.
tags?
Type:
Cfn[]
(optional)
A list of tags associated with the session.

.NET
Go
Java
Python
TypeScript