interface DocumentAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnDataAccessorPropsMixin.DocumentAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnDataAccessorPropsMixin_DocumentAttributeProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnDataAccessorPropsMixin.DocumentAttributeProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnDataAccessorPropsMixin.DocumentAttributeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnDataAccessorPropsMixin » 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 { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const documentAttributeProperty: qbusiness_mixins.CfnDataAccessorPropsMixin.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
(optional)
The identifier for the attribute.
value?
Type:
IResolvable | Document
(optional)
The value of the attribute.

.NET
Go
Java
Python
TypeScript