Interface CfnOrganizationConformancePackProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationConformancePackProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:28.645Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOrganizationConformancePackProps
static final class
An implementation forCfnOrganizationConformancePackProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
A list ofConformancePackInputParameter
objects.default String
The name of the Amazon S3 bucket where AWS Config stores conformance pack templates.default String
Any 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 String
A string containing full conformance pack template body.default String
Location 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 ofConformancePackInputParameter
objects.- 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
-