@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.733Z") @Stability(value=Stable) public interface CfnOrganizationConformancePackProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnOrganizationConformancePackProps.Builder
A builder for
CfnOrganizationConformancePackProps |
static class |
CfnOrganizationConformancePackProps.Jsii$Proxy
An implementation for
CfnOrganizationConformancePackProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnOrganizationConformancePackProps.Builder |
builder() |
default Object |
getConformancePackInputParameters()
A list of `ConformancePackInputParameter` objects.
|
default String |
getDeliveryS3Bucket()
The name of the Amazon S3 bucket where AWS Config stores conformance pack templates.
|
default String |
getDeliveryS3KeyPrefix()
Any folder structure you want to add to an Amazon S3 bucket.
|
default List<String> |
getExcludedAccounts()
A comma-separated list of accounts excluded from organization conformance pack.
|
String |
getOrganizationConformancePackName()
The name you assign to an organization conformance pack.
|
default String |
getTemplateBody()
A string containing full conformance pack template body.
|
default String |
getTemplateS3Uri()
Location of file containing the template body.
|
@Stability(value=Stable) @NotNull String getOrganizationConformancePackName()
@Stability(value=Stable) @Nullable default Object getConformancePackInputParameters()
@Stability(value=Stable) @Nullable default String getDeliveryS3Bucket()
This field is optional.
@Stability(value=Stable) @Nullable default String getDeliveryS3KeyPrefix()
This field is optional.
@Stability(value=Stable) @Nullable default List<String> getExcludedAccounts()
@Stability(value=Stable) @Nullable default String getTemplateBody()
Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.
@Stability(value=Stable) @Nullable default String getTemplateS3Uri()
The uri must point to the conformance pack template (max size: 300 KB).
@Stability(value=Stable) static CfnOrganizationConformancePackProps.Builder builder()
Copyright © 2022. All rights reserved.