aws-cdk-lib.aws_accessanalyzer.CfnAnalyzerProps

interface CfnAnalyzerProps

LanguageType name
.NETAmazon.CDK.AWS.AccessAnalyzer.CfnAnalyzerProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsaccessanalyzer#CfnAnalyzerProps
Javasoftware.amazon.awscdk.services.accessanalyzer.CfnAnalyzerProps
Pythonaws_cdk.aws_accessanalyzer.CfnAnalyzerProps
TypeScript aws-cdk-lib » aws_accessanalyzer » CfnAnalyzerProps

Properties for defining a CfnAnalyzer.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_accessanalyzer as accessanalyzer } from 'aws-cdk-lib';
const cfnAnalyzerProps: accessanalyzer.CfnAnalyzerProps = {
  type: 'type',

  // the properties below are optional
  analyzerName: 'analyzerName',
  archiveRules: [{
    filter: [{
      property: 'property',

      // the properties below are optional
      contains: ['contains'],
      eq: ['eq'],
      exists: false,
      neq: ['neq'],
    }],
    ruleName: 'ruleName',
  }],
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
typestringThe type represents the zone of trust for the analyzer.
analyzerName?stringThe name of the analyzer.
archiveRules?IResolvable | IResolvable | ArchiveRuleProperty[]Specifies the archive rules to add for the analyzer.
tags?CfnTag[]The tags to apply to the analyzer.

type

Type: string

The type represents the zone of trust for the analyzer.

Allowed Values : ACCOUNT | ORGANIZATION


analyzerName?

Type: string (optional)

The name of the analyzer.


archiveRules?

Type: IResolvable | IResolvable | ArchiveRuleProperty[] (optional)

Specifies the archive rules to add for the analyzer.


tags?

Type: CfnTag[] (optional)

The tags to apply to the analyzer.