Show / Hide Table of Contents

Class CfnDataSource.HttpConfigProperty

Use the HttpConfig property type to specify HttpConfig for an AWS AppSync data source.

Inheritance
object
CfnDataSource.HttpConfigProperty
Implements
CfnDataSource.IHttpConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.HttpConfigProperty : CfnDataSource.IHttpConfigProperty
Syntax (vb)
Public Class CfnDataSource.HttpConfigProperty Implements CfnDataSource.IHttpConfigProperty
Remarks

HttpConfig is a property of the AWS::AppSync::DataSource resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html

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.AppSync;

             var httpConfigProperty = new HttpConfigProperty {
                 Endpoint = "endpoint",

                 // the properties below are optional
                 AuthorizationConfig = new AuthorizationConfigProperty {
                     AuthorizationType = "authorizationType",

                     // the properties below are optional
                     AwsIamConfig = new AwsIamConfigProperty {
                         SigningRegion = "signingRegion",
                         SigningServiceName = "signingServiceName"
                     }
                 }
             };

Synopsis

Constructors

HttpConfigProperty()

Use the HttpConfig property type to specify HttpConfig for an AWS AppSync data source.

Properties

AuthorizationConfig

The authorization configuration.

Endpoint

The endpoint.

Constructors

HttpConfigProperty()

Use the HttpConfig property type to specify HttpConfig for an AWS AppSync data source.

public HttpConfigProperty()
Remarks

HttpConfig is a property of the AWS::AppSync::DataSource resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html

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.AppSync;

             var httpConfigProperty = new HttpConfigProperty {
                 Endpoint = "endpoint",

                 // the properties below are optional
                 AuthorizationConfig = new AuthorizationConfigProperty {
                     AuthorizationType = "authorizationType",

                     // the properties below are optional
                     AwsIamConfig = new AwsIamConfigProperty {
                         SigningRegion = "signingRegion",
                         SigningServiceName = "signingServiceName"
                     }
                 }
             };

Properties

AuthorizationConfig

The authorization configuration.

public object? AuthorizationConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-authorizationconfig

Type union: either IResolvable or CfnDataSource.IAuthorizationConfigProperty

Endpoint

The endpoint.

public string Endpoint { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint

Implements

CfnDataSource.IHttpConfigProperty
Back to top Generated by DocFX