Interface CfnUserProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:02.121Z")
@Stability(Stable)
public interface CfnUserProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnUserProfilePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.opsworks.*;
CfnUserProfileMixinProps cfnUserProfileMixinProps = CfnUserProfileMixinProps.builder()
.allowSelfManagement(false)
.iamUserArn("iamUserArn")
.sshPublicKey("sshPublicKey")
.sshUsername("sshUsername")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserProfileMixinPropsstatic final classAn implementation forCfnUserProfileMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowSelfManagement
Whether users can specify their own SSH public key through the My Settings page.For more information, see Managing User Permissions .
Returns union: either
BooleanorIResolvable- See Also:
-
getIamUserArn
The user's IAM ARN.- See Also:
-
getSshPublicKey
The user's SSH public key.- See Also:
-
getSshUsername
The user's SSH user name.- See Also:
-
builder
- Returns:
- a
CfnUserProfileMixinProps.BuilderofCfnUserProfileMixinProps
-