interface DocumentAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QBusiness.CfnDataAccessor.DocumentAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsqbusiness#CfnDataAccessor_DocumentAttributeProperty |
Java | software.amazon.awscdk.services.qbusiness.CfnDataAccessor.DocumentAttributeProperty |
Python | aws_cdk.aws_qbusiness.CfnDataAccessor.DocumentAttributeProperty |
TypeScript | aws-cdk-lib » aws_qbusiness » CfnDataAccessor » DocumentAttributeProperty |
A document attribute or metadata field.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_qbusiness as qbusiness } from 'aws-cdk-lib';
const documentAttributeProperty: qbusiness.CfnDataAccessor.DocumentAttributeProperty = {
name: 'name',
value: {
dateValue: 'dateValue',
longValue: 123,
stringListValue: ['stringListValue'],
stringValue: 'stringValue',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The identifier for the attribute. |
| value | IResolvable | Document | The value of the attribute. |
name
Type:
string
The identifier for the attribute.
value
Type:
IResolvable | Document
The value of the attribute.

.NET
Go
Java
Python
TypeScript