Interface CfnGroup.PolicyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroup.PolicyProperty.Jsii$Proxy
- Enclosing class:
CfnGroup
@Stability(Stable)
public static interface CfnGroup.PolicyProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about an attached policy.
An attached policy is a managed policy that has been attached to a user, group, or role.
For more information about managed policies, see Managed Policies and Inline Policies in the IAM User Guide .
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.*; Object policyDocument; PolicyProperty policyProperty = PolicyProperty.builder() .policyDocument(policyDocument) .policyName("policyName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGroup.PolicyProperty
static final class
An implementation forCfnGroup.PolicyProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The policy document.The friendly name (not ARN) identifying the policy.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPolicyDocument
The policy document. -
getPolicyName
The friendly name (not ARN) identifying the policy. -
builder
- Returns:
- a
CfnGroup.PolicyProperty.Builder
ofCfnGroup.PolicyProperty
-