1. Packages
  2. Ibm Provider
  3. API Docs
  4. getSccRule
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getSccRule

Explore with Pulumi AI

ibm logo
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

    Retrieve information about a rule from a read-only data source. Then, you can reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    NOTE: Security Compliance Center is a regional service. Please specify the IBM Cloud Provider attribute region to target another region. Else, exporting the environmental variable IBMCLOUD_SCC_API_ENDPOINT will also override which region is being targeted for all ibm providers(ex. export IBMCLOUD_SCC_API_ENDPOINT=https://eu-es.compliance.cloud.ibm.com).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const sccRule = ibm.getSccRule({
        instanceId: "00000000-1111-2222-3333-444444444444",
        ruleId: ibm_scc_rule.scc_rule_instance.rule_id,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    scc_rule = ibm.get_scc_rule(instance_id="00000000-1111-2222-3333-444444444444",
        rule_id=ibm_scc_rule["scc_rule_instance"]["rule_id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupSccRule(ctx, &ibm.LookupSccRuleArgs{
    			InstanceId: "00000000-1111-2222-3333-444444444444",
    			RuleId:     ibm_scc_rule.Scc_rule_instance.Rule_id,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var sccRule = Ibm.GetSccRule.Invoke(new()
        {
            InstanceId = "00000000-1111-2222-3333-444444444444",
            RuleId = ibm_scc_rule.Scc_rule_instance.Rule_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetSccRuleArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var sccRule = IbmFunctions.getSccRule(GetSccRuleArgs.builder()
                .instanceId("00000000-1111-2222-3333-444444444444")
                .ruleId(ibm_scc_rule.scc_rule_instance().rule_id())
                .build());
    
        }
    }
    
    variables:
      sccRule:
        fn::invoke:
          function: ibm:getSccRule
          arguments:
            instanceId: 00000000-1111-2222-3333-444444444444
            ruleId: ${ibm_scc_rule.scc_rule_instance.rule_id}
    

    Using getSccRule

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSccRule(args: GetSccRuleArgs, opts?: InvokeOptions): Promise<GetSccRuleResult>
    function getSccRuleOutput(args: GetSccRuleOutputArgs, opts?: InvokeOptions): Output<GetSccRuleResult>
    def get_scc_rule(instance_id: Optional[str] = None,
                     rule_id: Optional[str] = None,
                     timeouts: Optional[GetSccRuleTimeouts] = None,
                     opts: Optional[InvokeOptions] = None) -> GetSccRuleResult
    def get_scc_rule_output(instance_id: Optional[pulumi.Input[str]] = None,
                     rule_id: Optional[pulumi.Input[str]] = None,
                     timeouts: Optional[pulumi.Input[GetSccRuleTimeoutsArgs]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetSccRuleResult]
    func LookupSccRule(ctx *Context, args *LookupSccRuleArgs, opts ...InvokeOption) (*LookupSccRuleResult, error)
    func LookupSccRuleOutput(ctx *Context, args *LookupSccRuleOutputArgs, opts ...InvokeOption) LookupSccRuleResultOutput

    > Note: This function is named LookupSccRule in the Go SDK.

    public static class GetSccRule 
    {
        public static Task<GetSccRuleResult> InvokeAsync(GetSccRuleArgs args, InvokeOptions? opts = null)
        public static Output<GetSccRuleResult> Invoke(GetSccRuleInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSccRuleResult> getSccRule(GetSccRuleArgs args, InvokeOptions options)
    public static Output<GetSccRuleResult> getSccRule(GetSccRuleArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getSccRule:getSccRule
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    The ID of the SCC instance in a particular region.
    RuleId string
    The ID of the corresponding rule.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    Timeouts GetSccRuleTimeouts
    InstanceId string
    The ID of the SCC instance in a particular region.
    RuleId string
    The ID of the corresponding rule.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    Timeouts GetSccRuleTimeouts
    instanceId String
    The ID of the SCC instance in a particular region.
    ruleId String
    The ID of the corresponding rule.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    timeouts GetSccRuleTimeouts
    instanceId string
    The ID of the SCC instance in a particular region.
    ruleId string
    The ID of the corresponding rule.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    timeouts GetSccRuleTimeouts
    instance_id str
    The ID of the SCC instance in a particular region.
    rule_id str
    The ID of the corresponding rule.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    timeouts GetSccRuleTimeouts
    instanceId String
    The ID of the SCC instance in a particular region.
    ruleId String
    The ID of the corresponding rule.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    timeouts Property Map

    getSccRule Result

    The following output properties are available:

    AccountId string
    (String) The account ID.

    • Constraints: The maximum length is 32 characters. The minimum length is 3 characters. The value must match regular expression /[A-Za-z0-9]+/.
    CreatedBy string
    (String) The user who created the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    CreatedOn string
    (String) The date when the rule was created.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Id string
    (String) The rule ID.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    Imports List<GetSccRuleImport>
    (List) The collection of import parameters. Nested schema for import:
    InstanceId string
    Labels List<string>
    (List) The list of labels.

    • Constraints: The list items must match regular expression /[A-Za-z0-9]+/. The maximum length is 32 items. The minimum length is 0 items.
    RequiredConfigs List<GetSccRuleRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    RuleId string
    Targets List<GetSccRuleTarget>
    (List) The rule target. Nested schema for target:
    Type string
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    UpdatedBy string
    (String) The user who modified the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    UpdatedOn string
    (String) The date when the rule was modified.
    Version string
    (String) The version number of a rule.

    • Constraints: The maximum length is 10 characters. The minimum length is 5 characters. The value must match regular expression /^[0-9][0-9.]*$/.
    Timeouts GetSccRuleTimeouts
    AccountId string
    (String) The account ID.

    • Constraints: The maximum length is 32 characters. The minimum length is 3 characters. The value must match regular expression /[A-Za-z0-9]+/.
    CreatedBy string
    (String) The user who created the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    CreatedOn string
    (String) The date when the rule was created.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Id string
    (String) The rule ID.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    Imports []GetSccRuleImport
    (List) The collection of import parameters. Nested schema for import:
    InstanceId string
    Labels []string
    (List) The list of labels.

    • Constraints: The list items must match regular expression /[A-Za-z0-9]+/. The maximum length is 32 items. The minimum length is 0 items.
    RequiredConfigs []GetSccRuleRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    RuleId string
    Targets []GetSccRuleTarget
    (List) The rule target. Nested schema for target:
    Type string
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    UpdatedBy string
    (String) The user who modified the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    UpdatedOn string
    (String) The date when the rule was modified.
    Version string
    (String) The version number of a rule.

    • Constraints: The maximum length is 10 characters. The minimum length is 5 characters. The value must match regular expression /^[0-9][0-9.]*$/.
    Timeouts GetSccRuleTimeouts
    accountId String
    (String) The account ID.

    • Constraints: The maximum length is 32 characters. The minimum length is 3 characters. The value must match regular expression /[A-Za-z0-9]+/.
    createdBy String
    (String) The user who created the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    createdOn String
    (String) The date when the rule was created.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    id String
    (String) The rule ID.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    imports List<GetSccRuleImport>
    (List) The collection of import parameters. Nested schema for import:
    instanceId String
    labels List<String>
    (List) The list of labels.

    • Constraints: The list items must match regular expression /[A-Za-z0-9]+/. The maximum length is 32 items. The minimum length is 0 items.
    requiredConfigs List<GetSccRuleRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    ruleId String
    targets List<GetSccRuleTarget>
    (List) The rule target. Nested schema for target:
    type String
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    updatedBy String
    (String) The user who modified the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    updatedOn String
    (String) The date when the rule was modified.
    version String
    (String) The version number of a rule.

    • Constraints: The maximum length is 10 characters. The minimum length is 5 characters. The value must match regular expression /^[0-9][0-9.]*$/.
    timeouts GetSccRuleTimeouts
    accountId string
    (String) The account ID.

    • Constraints: The maximum length is 32 characters. The minimum length is 3 characters. The value must match regular expression /[A-Za-z0-9]+/.
    createdBy string
    (String) The user who created the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    createdOn string
    (String) The date when the rule was created.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    id string
    (String) The rule ID.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    imports GetSccRuleImport[]
    (List) The collection of import parameters. Nested schema for import:
    instanceId string
    labels string[]
    (List) The list of labels.

    • Constraints: The list items must match regular expression /[A-Za-z0-9]+/. The maximum length is 32 items. The minimum length is 0 items.
    requiredConfigs GetSccRuleRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    ruleId string
    targets GetSccRuleTarget[]
    (List) The rule target. Nested schema for target:
    type string
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    updatedBy string
    (String) The user who modified the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    updatedOn string
    (String) The date when the rule was modified.
    version string
    (String) The version number of a rule.

    • Constraints: The maximum length is 10 characters. The minimum length is 5 characters. The value must match regular expression /^[0-9][0-9.]*$/.
    timeouts GetSccRuleTimeouts
    account_id str
    (String) The account ID.

    • Constraints: The maximum length is 32 characters. The minimum length is 3 characters. The value must match regular expression /[A-Za-z0-9]+/.
    created_by str
    (String) The user who created the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    created_on str
    (String) The date when the rule was created.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    id str
    (String) The rule ID.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    imports Sequence[GetSccRuleImport]
    (List) The collection of import parameters. Nested schema for import:
    instance_id str
    labels Sequence[str]
    (List) The list of labels.

    • Constraints: The list items must match regular expression /[A-Za-z0-9]+/. The maximum length is 32 items. The minimum length is 0 items.
    required_configs Sequence[GetSccRuleRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    rule_id str
    targets Sequence[GetSccRuleTarget]
    (List) The rule target. Nested schema for target:
    type str
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    updated_by str
    (String) The user who modified the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    updated_on str
    (String) The date when the rule was modified.
    version str
    (String) The version number of a rule.

    • Constraints: The maximum length is 10 characters. The minimum length is 5 characters. The value must match regular expression /^[0-9][0-9.]*$/.
    timeouts GetSccRuleTimeouts
    accountId String
    (String) The account ID.

    • Constraints: The maximum length is 32 characters. The minimum length is 3 characters. The value must match regular expression /[A-Za-z0-9]+/.
    createdBy String
    (String) The user who created the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    createdOn String
    (String) The date when the rule was created.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    id String
    (String) The rule ID.

    • Constraints: The maximum length is 41 characters. The minimum length is 41 characters. The value must match regular expression /rule-[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}/.
    imports List<Property Map>
    (List) The collection of import parameters. Nested schema for import:
    instanceId String
    labels List<String>
    (List) The list of labels.

    • Constraints: The list items must match regular expression /[A-Za-z0-9]+/. The maximum length is 32 items. The minimum length is 0 items.
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    ruleId String
    targets List<Property Map>
    (List) The rule target. Nested schema for target:
    type String
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    updatedBy String
    (String) The user who modified the rule.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    updatedOn String
    (String) The date when the rule was modified.
    version String
    (String) The version number of a rule.

    • Constraints: The maximum length is 10 characters. The minimum length is 5 characters. The value must match regular expression /^[0-9][0-9.]*$/.
    timeouts Property Map

    Supporting Types

    GetSccRuleImport

    Parameters List<GetSccRuleImportParameter>
    (List) The list of import parameters.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for parameters:
    Parameters []GetSccRuleImportParameter
    (List) The list of import parameters.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for parameters:
    parameters List<GetSccRuleImportParameter>
    (List) The list of import parameters.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for parameters:
    parameters GetSccRuleImportParameter[]
    (List) The list of import parameters.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for parameters:
    parameters Sequence[GetSccRuleImportParameter]
    (List) The list of import parameters.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for parameters:
    parameters List<Property Map>
    (List) The list of import parameters.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for parameters:

    GetSccRuleImportParameter

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    DisplayName string
    (String) The display name of the property.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Type string
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    DisplayName string
    (String) The display name of the property.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Type string
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    displayName String
    (String) The display name of the property.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    type String
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    displayName string
    (String) The display name of the property.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    type string
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    display_name str
    (String) The display name of the property.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    type str
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    displayName String
    (String) The display name of the property.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    type String
    (String) The rule type (allowable values are user_defined or system_defined).

    • Constraints: Allowable values are: user_defined, system_defined. The maximum length is 14 characters. The minimum length is 12 characters. The value must match regular expression /[A-Za-z]+_[A-Za-z]+/.

    GetSccRuleRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAll

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIf

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnd

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAll

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAny

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAndOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAny

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIf

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOr

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAll

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAny

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfRequiredConfigOrOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIf

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnd

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAll

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAny

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAndOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIf

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOr

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAll

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIf

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAny

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIf

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllRequiredConfigOrOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAnd

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAll

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAny

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfRequiredConfigOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAll

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAny

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllRequiredConfigOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnd

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnd

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAndOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOr

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAndOrOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAll

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAny

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfRequiredConfigOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAll

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAny

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIf

    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyRequiredConfigOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOr

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnd

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAndOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOr

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAll

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAllTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnd

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrAnyTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAndOrOrOr

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAny

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAnyRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAnyTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAnyRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAnyTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIf

    RequiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    Targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfTarget>
    (List) The rule target. Nested schema for target:
    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig>
    (List) The required configurations. Nested schema for required_config:
    targets List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfTarget>
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfTarget[]
    (List) The rule target. Nested schema for target:
    required_configs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig]
    (List) The required configurations. Nested schema for required_config:
    targets Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfTarget]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfig

    AllIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIf>
    Alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAll>
    Ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAny>
    AnyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnyIf>
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AllIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIf
    Alls []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAll
    Ands []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnd
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    Anies []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAny
    AnyIfs []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnyIf
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Ors []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigOr
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIf>
    alls List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAll>
    ands List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnd>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAny>
    anyIfs List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnyIf>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigOr>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIf[]
    alls GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAll[]
    ands GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnd[]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAny[]
    anyIfs GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnyIf[]
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigOr[]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    all_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIf]
    alls Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAll]
    ands Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnd]
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAny]
    any_ifs Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAnyIf]
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigOr]
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    allIfs List<Property Map>
    alls List<Property Map>
    ands List<Property Map>
    (List) The AND required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for and:
    anies List<Property Map>
    anyIfs List<Property Map>
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    ors List<Property Map>
    (List) The OR required configurations.

    • Constraints: The maximum length is 64 items. The minimum length is 1 item. Nested schema for or:
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAll

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIf

    RequiredConfigs []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfRequiredConfig
    (List) The required configurations. Nested schema for required_config:
    Targets []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTarget
    (List) The rule target. Nested schema for target:
    requiredConfigs GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfRequiredConfig[]
    (List) The required configurations. Nested schema for required_config:
    targets GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTarget[]
    (List) The rule target. Nested schema for target:
    requiredConfigs List<Property Map>
    (List) The required configurations. Nested schema for required_config:
    targets List<Property Map>
    (List) The rule target. Nested schema for target:

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTarget

    AdditionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    AdditionalTargetAttributes []GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    ReferenceName string
    ResourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    ServiceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute[]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName string
    resourceKind string
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName string
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName string
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additional_target_attributes Sequence[GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute]
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    reference_name str
    resource_kind str
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_display_name str
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    service_name str
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    additionalTargetAttributes List<Property Map>
    (List) The list of targets supported properties.

    • Constraints: The maximum length is 99999 items. The minimum length is 0 items. Nested schema for additional_target_attributes:
    referenceName String
    resourceKind String
    (String) The target resource kind.

    • Constraints: The maximum length is 99999 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceDisplayName String
    (String) The display name of the target service.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    serviceName String
    (String) The target service name.

    • Constraints: The maximum length is 64 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllIfTargetAdditionalTargetAttribute

    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name string
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name str
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    name String
    (String) The additional target attribute name.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.

    GetSccRuleRequiredConfigAllIfRequiredConfigAnyIfRequiredConfigAllRequiredConfig

    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    Property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    Value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description String
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator String
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property String
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value String
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description string
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator string
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property string
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value string
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    description str
    (String) The required config description.

    • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    operator str
    (String) The operator.

    • Constraints: Allowable values are: string_equals, string_not_equals, string_match, string_not_match, string_contains, string_not_contains, num_equals, num_not_equals, num_less_than, num_less_than_equals, num_greater_than, num_greater_than_equals, is_empty, is_not_empty, is_true, is_false, strings_in_list, strings_allowed, strings_required, ips_in_range, ips_equals, ips_not_equals, days_less_than.
    property str
    (String) The property.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.
    value str
    (String) The value.

    • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /[A-Za-z0-9]+/.