Show / Hide Table of Contents

Class ResolverArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ResolverArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.AppSync
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ResolverArgs : ResourceArgs

Constructors

View Source

ResolverArgs()

Declaration
public ResolverArgs()

Properties

View Source

ApiId

The API ID for the GraphQL API.

Declaration
public Input<string> ApiId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CachingConfig

The CachingConfig.

Declaration
public Input<ResolverCachingConfigArgs> CachingConfig { get; set; }
Property Value
Type Description
Input<ResolverCachingConfigArgs>
View Source

DataSource

The DataSource name.

Declaration
public Input<string> DataSource { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Field

The field name from the schema defined in the GraphQL API.

Declaration
public Input<string> Field { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Kind

The resolver type. Valid values are UNIT and PIPELINE.

Declaration
public Input<string> Kind { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PipelineConfig

The PipelineConfig.

Declaration
public Input<ResolverPipelineConfigArgs> PipelineConfig { get; set; }
Property Value
Type Description
Input<ResolverPipelineConfigArgs>
View Source

RequestTemplate

The request mapping template for UNIT resolver or 'before mapping template' for PIPELINE resolver.

Declaration
public Input<string> RequestTemplate { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResponseTemplate

The response mapping template for UNIT resolver or 'after mapping template' for PIPELINE resolver.

Declaration
public Input<string> ResponseTemplate { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Type

The type name from the schema defined in the GraphQL API.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.