Interface AddToPrincipalPolicyResult
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AddToPrincipalPolicyResult.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:09.207Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAddToPrincipalPolicyResult
static final class
An implementation forAddToPrincipalPolicyResult
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default software.constructs.IDependable
Dependable 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.Builder
ofAddToPrincipalPolicyResult
-