Interface CfnOrganizationConformancePackMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationConformancePackMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.512Z")
@Stability(Stable)
public interface CfnOrganizationConformancePackMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnOrganizationConformancePackPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.config.*;
CfnOrganizationConformancePackMixinProps cfnOrganizationConformancePackMixinProps = CfnOrganizationConformancePackMixinProps.builder()
.conformancePackInputParameters(List.of(ConformancePackInputParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.deliveryS3Bucket("deliveryS3Bucket")
.deliveryS3KeyPrefix("deliveryS3KeyPrefix")
.excludedAccounts(List.of("excludedAccounts"))
.organizationConformancePackName("organizationConformancePackName")
.templateBody("templateBody")
.templateS3Uri("templateS3Uri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOrganizationConformancePackMixinPropsstatic final classAn implementation forCfnOrganizationConformancePackMixinProps -
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.default StringThe 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
-
getConformancePackInputParameters
A list ofConformancePackInputParameterobjects.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnOrganizationConformancePackPropsMixin.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:
-
getOrganizationConformancePackName
The name you assign to an 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
-