Interface AccessKeysRotatedProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,RuleProps
- All Known Implementing Classes:
AccessKeysRotatedProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:34.203Z")
@Stability(Stable)
public interface AccessKeysRotatedProps
extends software.amazon.jsii.JsiiSerializable, RuleProps
Construction properties for a AccessKeysRotated.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.config.*;
EvaluationMode evaluationMode;
Object inputParameters;
RuleScope ruleScope;
AccessKeysRotatedProps accessKeysRotatedProps = AccessKeysRotatedProps.builder()
.configRuleName("configRuleName")
.description("description")
.evaluationModes(evaluationMode)
.inputParameters(Map.of(
"inputParametersKey", inputParameters))
.maxAge(Duration.minutes(30))
.maximumExecutionFrequency(MaximumExecutionFrequency.ONE_HOUR)
.ruleScope(ruleScope)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAccessKeysRotatedPropsstatic final classAn implementation forAccessKeysRotatedProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.config.RuleProps
getConfigRuleName, getDescription, getEvaluationModes, getInputParameters, getMaximumExecutionFrequency, getRuleScope
-
Method Details
-
getMaxAge
The maximum number of days within which the access keys must be rotated.Default: Duration.days(90)
-
builder
- Returns:
- a
AccessKeysRotatedProps.BuilderofAccessKeysRotatedProps
-