Interface AccessKeysRotatedProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RuleProps
- All Known Implementing Classes:
AccessKeysRotatedProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.523Z")
@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.services.config.*; import software.amazon.awscdk.core.*; Object inputParameters; RuleScope ruleScope; AccessKeysRotatedProps accessKeysRotatedProps = AccessKeysRotatedProps.builder() .configRuleName("configRuleName") .description("description") .inputParameters(Map.of( "inputParametersKey", inputParameters)) .maxAge(Duration.minutes(30)) .maximumExecutionFrequency(MaximumExecutionFrequency.ONE_HOUR) .ruleScope(ruleScope) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forAccessKeysRotatedProps
static final class
An implementation forAccessKeysRotatedProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.config.RuleProps
getConfigRuleName, getDescription, 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.Builder
ofAccessKeysRotatedProps
-