Show / Hide Table of Contents

Interface CfnAnalyzerPropsMixin.IInternalAccessAnalysisRuleProperty

Contains information about analysis rules for the internal access analyzer.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AccessAnalyzer
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalyzerPropsMixin.IInternalAccessAnalysisRuleProperty
Syntax (vb)
Public Interface CfnAnalyzerPropsMixin.IInternalAccessAnalysisRuleProperty
Remarks

Analysis rules determine which entities will generate findings based on the criteria you define when you create the rule.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessanalysisrule.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.AccessAnalyzer;

             var internalAccessAnalysisRuleProperty = new InternalAccessAnalysisRuleProperty {
                 Inclusions = new [] { new InternalAccessAnalysisRuleCriteriaProperty {
                     AccountIds = new [] { "accountIds" },
                     ResourceArns = new [] { "resourceArns" },
                     ResourceTypes = new [] { "resourceTypes" }
                 } }
             };

Synopsis

Properties

Inclusions

A list of rules for the internal access analyzer containing criteria to include in analysis.

Properties

Inclusions

A list of rules for the internal access analyzer containing criteria to include in analysis.

object? Inclusions { get; }
Property Value

object

Remarks

Only resources that meet the rule criteria will generate findings.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessanalysisrule.html#cfn-accessanalyzer-analyzer-internalaccessanalysisrule-inclusions

Type union: either IResolvable or (either IResolvable or CfnAnalyzerPropsMixin.IInternalAccessAnalysisRuleCriteriaProperty)[]

Back to top Generated by DocFX