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.
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
Remarks
Only resources that meet the rule criteria will generate findings.
Type union: either IResolvable or (either IResolvable or CfnAnalyzerPropsMixin.IInternalAccessAnalysisRuleCriteriaProperty)[]