GradientEdge CDK Utils
    Preparing search index...

    Interface EventgridNamespaceProps

    Properties for creating an EventGrid namespace

    interface EventgridNamespaceProps {
        autoScaleConfiguration?: EventgridNamespaceAutoScaleConfigurationProps;
        identity?: Input<IdentityInfoArgs | undefined>;
        inboundIpRules?: Input<Input<InboundIpRuleArgs>[] | undefined>;
        isZoneRedundant?: Input<boolean | undefined>;
        location?: Input<string | undefined>;
        minimumTlsVersionAllowed?: Input<string | undefined>;
        namespaceName?: Input<string | undefined>;
        privateEndpointConnections?: Input<
            Input<PrivateEndpointConnectionArgs>[]
            | undefined,
        >;
        publicNetworkAccess?: Input<string | undefined>;
        resourceGroupName: Input<string>;
        sku?: Input<NamespaceSkuArgs | undefined>;
        tags?: Input<{ [key: string]: Input<string> } | undefined>;
        topicsConfiguration?: Input<TopicsConfigurationArgs | undefined>;
        topicSpacesConfiguration?: Input<TopicSpacesConfigurationArgs | undefined>;
    }

    Hierarchy

    • NamespaceArgs
      • EventgridNamespaceProps
    Index
    identity?: Input<IdentityInfoArgs | undefined>

    Identity information for the Namespace resource.

    inboundIpRules?: Input<Input<InboundIpRuleArgs>[] | undefined>

    This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.

    isZoneRedundant?: Input<boolean | undefined>

    This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this property is not specified explicitly by the user, its default value depends on the following conditions: a. For Availability Zones enabled regions - The default property value would be true. b. For non-Availability Zones enabled regions - The default property value would be false. Once specified, this property cannot be updated.

    location?: Input<string | undefined>

    Location of the resource.

    minimumTlsVersionAllowed?: Input<string | undefined>

    Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported.

    namespaceName?: Input<string | undefined>

    Name of the namespace.

    privateEndpointConnections?: Input<
        Input<PrivateEndpointConnectionArgs>[]
        | undefined,
    >

    List of private endpoint connections.

    publicNetworkAccess?: Input<string | undefined>

    This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring

    resourceGroupName: Input<string>

    The name of the resource group within the user's subscription.

    sku?: Input<NamespaceSkuArgs | undefined>

    Represents available Sku pricing tiers.

    tags?: Input<{ [key: string]: Input<string> } | undefined>

    Tags of the resource.

    topicsConfiguration?: Input<TopicsConfigurationArgs | undefined>

    Topics configuration information for the namespace resource

    topicSpacesConfiguration?: Input<TopicSpacesConfigurationArgs | undefined>

    Topic spaces configuration information for the namespace resource