Interface AddToPrincipalPolicyResult
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AddToPrincipalPolicyResult.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:42.866Z")
@Stability(Stable)
public interface AddToPrincipalPolicyResult
extends software.amazon.jsii.JsiiSerializable
Result of calling
addToPrincipalPolicy.
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.iam.*;
import software.constructs.*;
IDependable dependable;
AddToPrincipalPolicyResult addToPrincipalPolicyResult = AddToPrincipalPolicyResult.builder()
.statementAdded(false)
// the properties below are optional
.policyDependable(dependable)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAddToPrincipalPolicyResultstatic final classAn implementation forAddToPrincipalPolicyResult -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default software.constructs.IDependableDependable which allows depending on the policy change being applied.Whether the statement was added to the identity's policies.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatementAdded
Whether the statement was added to the identity's policies. -
getPolicyDependable
@Stability(Stable) @Nullable default software.constructs.IDependable getPolicyDependable()Dependable which allows depending on the policy change being applied.Default: - Required if `statementAdded` is true.
-
builder
- Returns:
- a
AddToPrincipalPolicyResult.BuilderofAddToPrincipalPolicyResult
-