Interface CfnOrganizationConformancePackProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.583Z") @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();
 
  • Method Details

    • getOrganizationConformancePackName

      @Stability(Stable) @NotNull String getOrganizationConformancePackName()
      The name you assign to an organization conformance pack.
    • getConformancePackInputParameters

      @Stability(Stable) @Nullable default Object getConformancePackInputParameters()
      A list of ConformancePackInputParameter objects.
    • getDeliveryS3Bucket

      @Stability(Stable) @Nullable default String getDeliveryS3Bucket()
      The name of the Amazon S3 bucket where AWS Config stores conformance pack templates.

      This field is optional.

    • getDeliveryS3KeyPrefix

      @Stability(Stable) @Nullable default String getDeliveryS3KeyPrefix()
      Any folder structure you want to add to an Amazon S3 bucket.

      This field is optional.

    • getExcludedAccounts

      @Stability(Stable) @Nullable default List<String> getExcludedAccounts()
      A comma-separated list of accounts excluded from organization conformance pack.
    • getTemplateBody

      @Stability(Stable) @Nullable default String getTemplateBody()
      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.

    • getTemplateS3Uri

      @Stability(Stable) @Nullable default String getTemplateS3Uri()
      Location of file containing the template body.

      The uri must point to the conformance pack template (max size: 300 KB).

    • builder

      @Stability(Stable) static CfnOrganizationConformancePackProps.Builder builder()
      Returns:
      a CfnOrganizationConformancePackProps.Builder of CfnOrganizationConformancePackProps