interface DocumentAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QBusiness.CfnDataAccessorPropsMixin.DocumentAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsqbusiness#CfnDataAccessorPropsMixin_DocumentAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.qbusiness.CfnDataAccessorPropsMixin.DocumentAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_qbusiness.CfnDataAccessorPropsMixin.DocumentAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_qbusiness » 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 { aws_qbusiness as qbusiness } from '@aws-cdk/cfn-property-mixins';
const documentAttributeProperty: qbusiness.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