GradientEdge CDK Utils
    Preparing search index...
    interface ZeroTrustAccessGroupProps {
        accountId?: Input<string>;
        excludes?: Input<Input<ZeroTrustAccessGroupExclude>[]>;
        includes: Input<Input<ZeroTrustAccessGroupInclude>[]>;
        isDefault?: Input<boolean>;
        name: Input<string>;
        requires?: Input<Input<ZeroTrustAccessGroupRequire>[]>;
        zoneId?: Input<string>;
    }

    Hierarchy

    • ZeroTrustAccessGroupArgs
      • ZeroTrustAccessGroupProps
    Index

    Properties

    accountId?: Input<string>

    The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.

    excludes?: Input<Input<ZeroTrustAccessGroupExclude>[]>

    Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.

    includes: Input<Input<ZeroTrustAccessGroupInclude>[]>

    Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.

    isDefault?: Input<boolean>

    Whether this is the default group

    name: Input<string>

    The name of the Access group.

    requires?: Input<Input<ZeroTrustAccessGroupRequire>[]>

    Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.

    zoneId?: Input<string>

    The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.