Class PolicyVersion
- java.lang.Object
-
- software.amazon.awssdk.services.iam.model.PolicyVersion
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<PolicyVersion.Builder,PolicyVersion>
@Generated("software.amazon.awssdk:codegen") public final class PolicyVersion extends Object implements SdkPojo, Serializable, ToCopyableBuilder<PolicyVersion.Builder,PolicyVersion>
Contains information about a version of a managed policy.
This data type is used as a response element in the CreatePolicyVersion, GetPolicyVersion, ListPolicyVersions, and GetAccountAuthorizationDetails operations.
For more information about managed policies, refer to Managed policies and inline policies in the IAM User Guide.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfacePolicyVersion.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PolicyVersion.Builderbuilder()InstantcreateDate()The date and time, in ISO 8601 date-time format, when the policy version was created.Stringdocument()The policy document.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()BooleanisDefaultVersion()Specifies whether the policy version is set as the policy's default version.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends PolicyVersion.Builder>serializableBuilderClass()PolicyVersion.BuildertoBuilder()StringtoString()Returns a string representation of this object.StringversionId()The identifier for the policy version.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
document
public final String document()
The policy document.
The policy document is returned in the response to the GetPolicyVersion and GetAccountAuthorizationDetails operations. It is not returned in the response to the CreatePolicyVersion or ListPolicyVersions operations.
The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert the policy back to plain JSON text. For example, if you use Java, you can use the
decodemethod of thejava.net.URLDecoderutility class in the Java SDK. Other languages and SDKs provide similar functionality.- Returns:
- The policy document.
The policy document is returned in the response to the GetPolicyVersion and GetAccountAuthorizationDetails operations. It is not returned in the response to the CreatePolicyVersion or ListPolicyVersions operations.
The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert the policy back to plain JSON text. For example, if you use Java, you can use the
decodemethod of thejava.net.URLDecoderutility class in the Java SDK. Other languages and SDKs provide similar functionality.
-
versionId
public final String versionId()
The identifier for the policy version.
Policy version identifiers always begin with
v(always lowercase). When a policy is created, the first policy version isv1.- Returns:
- The identifier for the policy version.
Policy version identifiers always begin with
v(always lowercase). When a policy is created, the first policy version isv1.
-
isDefaultVersion
public final Boolean isDefaultVersion()
Specifies whether the policy version is set as the policy's default version.
- Returns:
- Specifies whether the policy version is set as the policy's default version.
-
createDate
public final Instant createDate()
The date and time, in ISO 8601 date-time format, when the policy version was created.
- Returns:
- The date and time, in ISO 8601 date-time format, when the policy version was created.
-
toBuilder
public PolicyVersion.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<PolicyVersion.Builder,PolicyVersion>
-
builder
public static PolicyVersion.Builder builder()
-
serializableBuilderClass
public static Class<? extends PolicyVersion.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-