@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-14T16:25:36.596Z")
public interface CfnOrganizationConfigRuleProps
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")) .organizationCustomCodeRuleMetadata(OrganizationCustomCodeRuleMetadataProperty.builder() .codeText("codeText") .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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnOrganizationConfigRuleProps.Builder
A builder for
CfnOrganizationConfigRuleProps |
static class |
CfnOrganizationConfigRuleProps.Jsii$Proxy
An implementation for
CfnOrganizationConfigRuleProps |
Modifier and Type | Method and Description |
---|---|
static CfnOrganizationConfigRuleProps.Builder |
builder() |
default java.util.List<java.lang.String> |
getExcludedAccounts()
A comma-separated list of accounts excluded from organization AWS Config rule.
|
java.lang.String |
getOrganizationConfigRuleName()
The name that you assign to organization AWS Config rule.
|
default java.lang.Object |
getOrganizationCustomCodeRuleMetadata()
`AWS::Config::OrganizationConfigRule.OrganizationCustomCodeRuleMetadata`.
|
default java.lang.Object |
getOrganizationCustomRuleMetadata()
An `OrganizationCustomRuleMetadata` object.
|
default java.lang.Object |
getOrganizationManagedRuleMetadata()
An `OrganizationManagedRuleMetadata` object.
|
java.lang.String getOrganizationConfigRuleName()
default java.util.List<java.lang.String> getExcludedAccounts()
default java.lang.Object getOrganizationCustomCodeRuleMetadata()
default java.lang.Object getOrganizationCustomRuleMetadata()
default java.lang.Object getOrganizationManagedRuleMetadata()
static CfnOrganizationConfigRuleProps.Builder builder()