Show / Hide Table of Contents

Interface CfnDataSource.IHttpConfigProperty

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

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IHttpConfigProperty
Syntax (vb)
Public Interface 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

Properties

AuthorizationConfig

The authorization configuration.

Endpoint

The endpoint.

Properties

AuthorizationConfig

The authorization configuration.

object? AuthorizationConfig { get; }
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.

string Endpoint { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX