Interface CfnOrganizationConformancePackProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOrganizationConformancePackProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:27.622Z") @Stability(Stable) public interface CfnOrganizationConformancePackProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.config.*;
 CfnOrganizationConformancePackProps cfnOrganizationConformancePackProps = CfnOrganizationConformancePackProps.builder()
         .organizationConformancePackName("organizationConformancePackName")
         // the properties below are optional
         .conformancePackInputParameters(List.of(ConformancePackInputParameterProperty.builder()
                 .parameterName("parameterName")
                 .parameterValue("parameterValue")
                 .build()))
         .deliveryS3Bucket("deliveryS3Bucket")
         .deliveryS3KeyPrefix("deliveryS3KeyPrefix")
         .excludedAccounts(List.of("excludedAccounts"))
         .templateBody("templateBody")
         .templateS3Uri("templateS3Uri")
         .build();
 

See Also: