Interface CfnOrganizationConformancePackProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationConformancePackProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:34.249Z")
@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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOrganizationConformancePackPropsstatic final classAn implementation forCfnOrganizationConformancePackProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA list ofConformancePackInputParameterobjects.default StringThe name of the Amazon S3 bucket where AWS Config stores conformance pack templates.default StringAny folder structure you want to add to an Amazon S3 bucket.A comma-separated list of accounts excluded from organization conformance pack.The name you assign to an organization conformance pack.default StringA string containing full conformance pack template body.default StringLocation of file containing the template body.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrganizationConformancePackName
The name you assign to an organization conformance pack.- See Also:
-
getConformancePackInputParameters
A list ofConformancePackInputParameterobjects.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnOrganizationConformancePack.ConformancePackInputParameterProperty>- See Also:
-
getDeliveryS3Bucket
The name of the Amazon S3 bucket where AWS Config stores conformance pack templates.This field is optional.
- See Also:
-
getDeliveryS3KeyPrefix
Any folder structure you want to add to an Amazon S3 bucket.This field is optional.
- See Also:
-
getExcludedAccounts
A comma-separated list of accounts excluded from organization conformance pack.- See Also:
-
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.
- See Also:
-
getTemplateS3Uri
Location of file containing the template body.The uri must point to the conformance pack template (max size: 300 KB).
- See Also:
-
builder
-