Interface CfnOrganizationConfigRuleProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOrganizationConfigRuleProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.579Z")
@Stability(Stable)
public interface CfnOrganizationConfigRuleProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnOrganizationConfigRule.
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.*;
CfnOrganizationConfigRuleProps cfnOrganizationConfigRuleProps = CfnOrganizationConfigRuleProps.builder()
.organizationConfigRuleName("organizationConfigRuleName")
// the properties below are optional
.excludedAccounts(List.of("excludedAccounts"))
.organizationCustomPolicyRuleMetadata(OrganizationCustomPolicyRuleMetadataProperty.builder()
.policyText("policyText")
.runtime("runtime")
// the properties below are optional
.debugLogDeliveryAccounts(List.of("debugLogDeliveryAccounts"))
.description("description")
.inputParameters("inputParameters")
.maximumExecutionFrequency("maximumExecutionFrequency")
.organizationConfigRuleTriggerTypes(List.of("organizationConfigRuleTriggerTypes"))
.resourceIdScope("resourceIdScope")
.resourceTypesScope(List.of("resourceTypesScope"))
.tagKeyScope("tagKeyScope")
.tagValueScope("tagValueScope")
.build())
.organizationCustomRuleMetadata(OrganizationCustomRuleMetadataProperty.builder()
.lambdaFunctionArn("lambdaFunctionArn")
.organizationConfigRuleTriggerTypes(List.of("organizationConfigRuleTriggerTypes"))
// the properties below are optional
.description("description")
.inputParameters("inputParameters")
.maximumExecutionFrequency("maximumExecutionFrequency")
.resourceIdScope("resourceIdScope")
.resourceTypesScope(List.of("resourceTypesScope"))
.tagKeyScope("tagKeyScope")
.tagValueScope("tagValueScope")
.build())
.organizationManagedRuleMetadata(OrganizationManagedRuleMetadataProperty.builder()
.ruleIdentifier("ruleIdentifier")
// the properties below are optional
.description("description")
.inputParameters("inputParameters")
.maximumExecutionFrequency("maximumExecutionFrequency")
.resourceIdScope("resourceIdScope")
.resourceTypesScope(List.of("resourceTypesScope"))
.tagKeyScope("tagKeyScope")
.tagValueScope("tagValueScope")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOrganizationConfigRulePropsstatic final classAn implementation forCfnOrganizationConfigRuleProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A comma-separated list of accounts excluded from organization AWS Config rule.The name that you assign to organization AWS Config rule.default ObjectAWS::Config::OrganizationConfigRule.OrganizationCustomPolicyRuleMetadata.default ObjectAnOrganizationCustomRuleMetadataobject.default ObjectAnOrganizationManagedRuleMetadataobject.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrganizationConfigRuleName
The name that you assign to organization AWS Config rule. -
getExcludedAccounts
A comma-separated list of accounts excluded from organization AWS Config rule. -
getOrganizationCustomPolicyRuleMetadata
AWS::Config::OrganizationConfigRule.OrganizationCustomPolicyRuleMetadata. -
getOrganizationCustomRuleMetadata
AnOrganizationCustomRuleMetadataobject. -
getOrganizationManagedRuleMetadata
AnOrganizationManagedRuleMetadataobject. -
builder
-