AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Represents the type data for each field retrieved from the introspection.

Inheritance Hierarchy

System.Object
  Amazon.AppSync.Model.DataSourceIntrospectionModelFieldType

Namespace: Amazon.AppSync.Model
Assembly: AWSSDK.AppSync.dll
Version: 3.x.y.z

Syntax

C#
public class DataSourceIntrospectionModelFieldType

The DataSourceIntrospectionModelFieldType type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property Kind System.String

Gets and sets the property Kind.

Specifies the classification of data. For example, this could be set to values like Scalar or NonNull to indicate a fundamental property of the field.

Valid values include:

  • Scalar: Indicates the value is a primitive type (scalar).

  • NonNull: Indicates the field cannot be null.

  • List: Indicates the field contains a list.

Public Property Name System.String

Gets and sets the property Name.

The name of the data type that represents the field. For example, String is a valid name value.

Public Property Type Amazon.AppSync.Model.DataSourceIntrospectionModelFieldType

Gets and sets the property Type.

The DataSourceIntrospectionModelFieldType object data. The type is only present if DataSourceIntrospectionModelFieldType.kind is set to NonNull or List.

The type typically contains its own kind and name fields to represent the actual type data. For instance, type could contain a kind value of Scalar with a name value of String. The values Scalar and String will be collectively stored in the values field.

Public Property Values System.Collections.Generic.List<System.String>

Gets and sets the property Values.

The values of the type field. This field represents the AppSync data type equivalent of the introspected field.

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5