Interface CfnDataSource.IDocumentAttributeValueProperty
The value of a document attribute.
Namespace: Amazon.CDK.AwsQbusiness
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDocumentAttributeValueProperty
Syntax (vb)
Public Interface IDocumentAttributeValueProperty
Remarks
You can only provide one value for a document attribute.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_qbusiness;
var documentAttributeValueProperty = new DocumentAttributeValueProperty {
DateValue = "dateValue",
LongValue = 123,
StringListValue = new [] { "stringListValue" },
StringValue = "stringValue"
};
Synopsis
Properties
DateValue | A date expressed as an ISO 8601 string. |
LongValue | A long integer value. |
StringListValue | A list of strings. |
StringValue | A string. |
Properties
DateValue
A date expressed as an ISO 8601 string.
virtual string DateValue { get; }
Property Value
System.String
Remarks
It's important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
LongValue
A long integer value.
virtual Nullable<double> LongValue { get; }
Property Value
System.Nullable<System.Double>
Remarks
StringListValue
A list of strings.
virtual string[] StringListValue { get; }
Property Value
System.String[]
Remarks
StringValue
A string.
virtual string StringValue { get; }
Property Value
System.String