Interface CfnAccessKeyMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessKeyMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:26.826Z")
@Stability(Stable)
public interface CfnAccessKeyMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAccessKeyPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.iam.mixins.*;
CfnAccessKeyMixinProps cfnAccessKeyMixinProps = CfnAccessKeyMixinProps.builder()
.serial(123)
.status("status")
.userName("userName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessKeyMixinPropsstatic final classAn implementation forCfnAccessKeyMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSerial
This value is specific to CloudFormation and can only be incremented .Incrementing this value notifies CloudFormation that you want to rotate your access key. When you update your stack, CloudFormation will replace the existing access key with a new key.
- See Also:
-
getStatus
The status of the access key.Activemeans that the key is valid for API calls, whileInactivemeans it is not.- See Also:
-
getUserName
The name of the IAM user that the new key will belong to.This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
- See Also:
-
builder
- Returns:
- a
CfnAccessKeyMixinProps.BuilderofCfnAccessKeyMixinProps
-