Show / Hide Table of Contents

Class CfnServicePropsMixin.IngressConfigurationProperty

Network configuration settings for inbound network traffic.

Inheritance
object
CfnServicePropsMixin.IngressConfigurationProperty
Implements
CfnServicePropsMixin.IIngressConfigurationProperty
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.AppRunner.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnServicePropsMixin.IngressConfigurationProperty : CfnServicePropsMixin.IIngressConfigurationProperty
Syntax (vb)
Public Class CfnServicePropsMixin.IngressConfigurationProperty Implements CfnServicePropsMixin.IIngressConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-ingressconfiguration.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.AppRunner.Mixins;

             var ingressConfigurationProperty = new IngressConfigurationProperty {
                 IsPubliclyAccessible = false
             };

Synopsis

Constructors

IngressConfigurationProperty()

Network configuration settings for inbound network traffic.

Properties

IsPubliclyAccessible

Specifies whether your App Runner service is publicly accessible.

Constructors

IngressConfigurationProperty()

Network configuration settings for inbound network traffic.

public IngressConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-ingressconfiguration.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.AppRunner.Mixins;

             var ingressConfigurationProperty = new IngressConfigurationProperty {
                 IsPubliclyAccessible = false
             };

Properties

IsPubliclyAccessible

Specifies whether your App Runner service is publicly accessible.

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

object

Remarks

To make the service publicly accessible set it to True . To make the service privately accessible, from only within an Amazon VPC set it to False .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-ingressconfiguration.html#cfn-apprunner-service-ingressconfiguration-ispubliclyaccessible

Type union: either bool or IResolvable

Implements

CfnServicePropsMixin.IIngressConfigurationProperty
Back to top Generated by DocFX