{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.IAM.Types.PolicyVersion -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.IAM.Types.PolicyVersion where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | 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 -- -- in the /IAM User Guide/. -- -- /See:/ 'newPolicyVersion' smart constructor. data PolicyVersion = PolicyVersion' { -- | The date and time, in -- , when the -- policy version was created. createDate :: Prelude.Maybe Data.ISO8601, -- | 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 . 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 @decode@ method of the -- @java.net.URLDecoder@ utility class in the Java SDK. Other languages and -- SDKs provide similar functionality. document :: Prelude.Maybe Prelude.Text, -- | Specifies whether the policy version is set as the policy\'s default -- version. isDefaultVersion :: Prelude.Maybe Prelude.Bool, -- | The identifier for the policy version. -- -- Policy version identifiers always begin with @v@ (always lowercase). -- When a policy is created, the first policy version is @v1@. versionId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PolicyVersion' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'createDate', 'policyVersion_createDate' - The date and time, in -- , when the -- policy version was created. -- -- 'document', 'policyVersion_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 . 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 @decode@ method of the -- @java.net.URLDecoder@ utility class in the Java SDK. Other languages and -- SDKs provide similar functionality. -- -- 'isDefaultVersion', 'policyVersion_isDefaultVersion' - Specifies whether the policy version is set as the policy\'s default -- version. -- -- 'versionId', 'policyVersion_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 is @v1@. newPolicyVersion :: PolicyVersion newPolicyVersion = PolicyVersion' { createDate = Prelude.Nothing, document = Prelude.Nothing, isDefaultVersion = Prelude.Nothing, versionId = Prelude.Nothing } -- | The date and time, in -- , when the -- policy version was created. policyVersion_createDate :: Lens.Lens' PolicyVersion (Prelude.Maybe Prelude.UTCTime) policyVersion_createDate = Lens.lens (\PolicyVersion' {createDate} -> createDate) (\s@PolicyVersion' {} a -> s {createDate = a} :: PolicyVersion) Prelude.. Lens.mapping Data._Time -- | 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 . 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 @decode@ method of the -- @java.net.URLDecoder@ utility class in the Java SDK. Other languages and -- SDKs provide similar functionality. policyVersion_document :: Lens.Lens' PolicyVersion (Prelude.Maybe Prelude.Text) policyVersion_document = Lens.lens (\PolicyVersion' {document} -> document) (\s@PolicyVersion' {} a -> s {document = a} :: PolicyVersion) -- | Specifies whether the policy version is set as the policy\'s default -- version. policyVersion_isDefaultVersion :: Lens.Lens' PolicyVersion (Prelude.Maybe Prelude.Bool) policyVersion_isDefaultVersion = Lens.lens (\PolicyVersion' {isDefaultVersion} -> isDefaultVersion) (\s@PolicyVersion' {} a -> s {isDefaultVersion = a} :: PolicyVersion) -- | The identifier for the policy version. -- -- Policy version identifiers always begin with @v@ (always lowercase). -- When a policy is created, the first policy version is @v1@. policyVersion_versionId :: Lens.Lens' PolicyVersion (Prelude.Maybe Prelude.Text) policyVersion_versionId = Lens.lens (\PolicyVersion' {versionId} -> versionId) (\s@PolicyVersion' {} a -> s {versionId = a} :: PolicyVersion) instance Data.FromXML PolicyVersion where parseXML x = PolicyVersion' Prelude.<$> (x Data..@? "CreateDate") Prelude.<*> (x Data..@? "Document") Prelude.<*> (x Data..@? "IsDefaultVersion") Prelude.<*> (x Data..@? "VersionId") instance Prelude.Hashable PolicyVersion where hashWithSalt _salt PolicyVersion' {..} = _salt `Prelude.hashWithSalt` createDate `Prelude.hashWithSalt` document `Prelude.hashWithSalt` isDefaultVersion `Prelude.hashWithSalt` versionId instance Prelude.NFData PolicyVersion where rnf PolicyVersion' {..} = Prelude.rnf createDate `Prelude.seq` Prelude.rnf document `Prelude.seq` Prelude.rnf isDefaultVersion `Prelude.seq` Prelude.rnf versionId