Interface CustomPolicyDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomPolicyDetails.Builder,CustomPolicyDetails>,SdkBuilder<CustomPolicyDetails.Builder,CustomPolicyDetails>,SdkPojo
- Enclosing class:
- CustomPolicyDetails
public static interface CustomPolicyDetails.Builder extends SdkPojo, CopyableBuilder<CustomPolicyDetails.Builder,CustomPolicyDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomPolicyDetails.BuilderenableDebugLogDelivery(Boolean enableDebugLogDelivery)The boolean expression for enabling debug logging for your Config Custom Policy rule.CustomPolicyDetails.BuilderpolicyRuntime(String policyRuntime)The runtime system for your Config Custom Policy rule.CustomPolicyDetails.BuilderpolicyText(String policyText)The policy definition containing the logic for your Config Custom Policy rule.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
policyRuntime
CustomPolicyDetails.Builder policyRuntime(String policyRuntime)
The runtime system for your Config Custom Policy rule. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository.
- Parameters:
policyRuntime- The runtime system for your Config Custom Policy rule. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the Guard GitHub Repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
policyText
CustomPolicyDetails.Builder policyText(String policyText)
The policy definition containing the logic for your Config Custom Policy rule.
- Parameters:
policyText- The policy definition containing the logic for your Config Custom Policy rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enableDebugLogDelivery
CustomPolicyDetails.Builder enableDebugLogDelivery(Boolean enableDebugLogDelivery)
The boolean expression for enabling debug logging for your Config Custom Policy rule. The default value is
false.- Parameters:
enableDebugLogDelivery- The boolean expression for enabling debug logging for your Config Custom Policy rule. The default value isfalse.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-