interface CfnOrganizationConformancePackProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Config.CfnOrganizationConformancePackProps | 
|  Java | software.amazon.awscdk.services.config.CfnOrganizationConformancePackProps | 
|  Python | aws_cdk.aws_config.CfnOrganizationConformancePackProps | 
|  TypeScript | @aws-cdk/aws-config»CfnOrganizationConformancePackProps | 
Properties for defining a CfnOrganizationConformancePack.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as config from '@aws-cdk/aws-config';
const cfnOrganizationConformancePackProps: config.CfnOrganizationConformancePackProps = {
  organizationConformancePackName: 'organizationConformancePackName',
  // the properties below are optional
  conformancePackInputParameters: [{
    parameterName: 'parameterName',
    parameterValue: 'parameterValue',
  }],
  deliveryS3Bucket: 'deliveryS3Bucket',
  deliveryS3KeyPrefix: 'deliveryS3KeyPrefix',
  excludedAccounts: ['excludedAccounts'],
  templateBody: 'templateBody',
  templateS3Uri: 'templateS3Uri',
};
Properties
| Name | Type | Description | 
|---|---|---|
| organization | string | The name you assign to an organization conformance pack. | 
| conformance | IResolvable | IResolvable | Conformance[] | A list of ConformancePackInputParameterobjects. | 
| delivery | string | The name of the Amazon S3 bucket where AWS Config stores conformance pack templates. | 
| delivery | string | Any folder structure you want to add to an Amazon S3 bucket. | 
| excluded | string[] | A comma-separated list of accounts excluded from organization conformance pack. | 
| template | string | A string containing full conformance pack template body. | 
| template | string | Location of file containing the template body. | 
organizationConformancePackName
Type:
string
The name you assign to an organization conformance pack.
conformancePackInputParameters?
Type:
IResolvable | IResolvable | Conformance[]
(optional)
A list of ConformancePackInputParameter objects.
deliveryS3Bucket?
Type:
string
(optional)
The name of the Amazon S3 bucket where AWS Config stores conformance pack templates.
This field is optional.
deliveryS3KeyPrefix?
Type:
string
(optional)
Any folder structure you want to add to an Amazon S3 bucket.
This field is optional.
excludedAccounts?
Type:
string[]
(optional)
A comma-separated list of accounts excluded from organization conformance pack.
templateBody?
Type:
string
(optional)
A string containing full conformance pack template body.
Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.
templateS3Uri?
Type:
string
(optional)
Location of file containing the template body.
The uri must point to the conformance pack template (max size: 300 KB).
