Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.HttpConfigProperty

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

Inheritance
object
CfnDataSourcePropsMixin.HttpConfigProperty
Implements
CfnDataSourcePropsMixin.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.Mixins.Preview.AWS.AppSync.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.HttpConfigProperty : CfnDataSourcePropsMixin.IHttpConfigProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.HttpConfigProperty Implements CfnDataSourcePropsMixin.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.Mixins.Preview.AWS.AppSync.Mixins;

             var httpConfigProperty = new HttpConfigProperty {
                 AuthorizationConfig = new AuthorizationConfigProperty {
                     AuthorizationType = "authorizationType",
                     AwsIamConfig = new AwsIamConfigProperty {
                         SigningRegion = "signingRegion",
                         SigningServiceName = "signingServiceName"
                     }
                 },
                 Endpoint = "endpoint"
             };

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.Mixins.Preview.AWS.AppSync.Mixins;

             var httpConfigProperty = new HttpConfigProperty {
                 AuthorizationConfig = new AuthorizationConfigProperty {
                     AuthorizationType = "authorizationType",
                     AwsIamConfig = new AwsIamConfigProperty {
                         SigningRegion = "signingRegion",
                         SigningServiceName = "signingServiceName"
                     }
                 },
                 Endpoint = "endpoint"
             };

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 CfnDataSourcePropsMixin.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

CfnDataSourcePropsMixin.IHttpConfigProperty
Back to top Generated by DocFX