libZSservicesZSamazonka-certificatemanager-pcaZSamazonka-certificatemanager-pca
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CertificateManagerPCA.CreatePermission

Description

Grants one or more permissions on a private CA to the AWS Certificate Manager (ACM) service principal (acm.amazonaws.com). These permissions allow ACM to issue and renew ACM certificates that reside in the same AWS account as the CA.

You can list current permissions with the ListPermissions action and revoke them with the DeletePermission action.

About Permissions

  • If the private CA and the certificates it issues reside in the same account, you can use CreatePermission to grant permissions for ACM to carry out automatic certificate renewals.
  • For automatic certificate renewal to succeed, the ACM service principal needs permissions to create, retrieve, and list certificates.
  • If the private CA and the ACM certificates reside in different accounts, then permissions cannot be used to enable automatic renewals. Instead, the ACM certificate owner must set up a resource-based policy to enable cross-account issuance and renewals. For more information, see Using a Resource Based Policy with ACM Private CA.
Synopsis

Creating a Request

data CreatePermission Source #

See: newCreatePermission smart constructor.

Constructors

CreatePermission' 

Fields

  • sourceAccount :: Maybe Text

    The ID of the calling account.

  • certificateAuthorityArn :: Text

    The Amazon Resource Name (ARN) of the CA that grants the permissions. You can find the ARN by calling the ListCertificateAuthorities action. This must have the following form:

    arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 .

  • principal :: Text

    The AWS service or identity that receives the permission. At this time, the only valid principal is acm.amazonaws.com.

  • actions :: NonEmpty ActionType

    The actions that the specified AWS service principal can use. These include IssueCertificate, GetCertificate, and ListPermissions.

Instances

Instances details
Eq CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Read CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Show CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Generic CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Associated Types

type Rep CreatePermission :: Type -> Type #

NFData CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Methods

rnf :: CreatePermission -> () #

Hashable CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

ToJSON CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

AWSRequest CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Associated Types

type AWSResponse CreatePermission #

ToHeaders CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

ToPath CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

ToQuery CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

type Rep CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

type Rep CreatePermission = D1 ('MetaData "CreatePermission" "Amazonka.CertificateManagerPCA.CreatePermission" "libZSservicesZSamazonka-certificatemanager-pcaZSamazonka-certificatemanager-pca" 'False) (C1 ('MetaCons "CreatePermission'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceAccount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "certificateAuthorityArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "principal") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "actions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty ActionType)))))
type AWSResponse CreatePermission Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

newCreatePermission Source #

Create a value of CreatePermission with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:sourceAccount:CreatePermission', createPermission_sourceAccount - The ID of the calling account.

$sel:certificateAuthorityArn:CreatePermission', createPermission_certificateAuthorityArn - The Amazon Resource Name (ARN) of the CA that grants the permissions. You can find the ARN by calling the ListCertificateAuthorities action. This must have the following form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 .

$sel:principal:CreatePermission', createPermission_principal - The AWS service or identity that receives the permission. At this time, the only valid principal is acm.amazonaws.com.

$sel:actions:CreatePermission', createPermission_actions - The actions that the specified AWS service principal can use. These include IssueCertificate, GetCertificate, and ListPermissions.

Request Lenses

createPermission_certificateAuthorityArn :: Lens' CreatePermission Text Source #

The Amazon Resource Name (ARN) of the CA that grants the permissions. You can find the ARN by calling the ListCertificateAuthorities action. This must have the following form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 .

createPermission_principal :: Lens' CreatePermission Text Source #

The AWS service or identity that receives the permission. At this time, the only valid principal is acm.amazonaws.com.

createPermission_actions :: Lens' CreatePermission (NonEmpty ActionType) Source #

The actions that the specified AWS service principal can use. These include IssueCertificate, GetCertificate, and ListPermissions.

Destructuring the Response

data CreatePermissionResponse Source #

See: newCreatePermissionResponse smart constructor.

Instances

Instances details
Eq CreatePermissionResponse Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Read CreatePermissionResponse Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Show CreatePermissionResponse Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Generic CreatePermissionResponse Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

Associated Types

type Rep CreatePermissionResponse :: Type -> Type #

NFData CreatePermissionResponse Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

type Rep CreatePermissionResponse Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.CreatePermission

type Rep CreatePermissionResponse = D1 ('MetaData "CreatePermissionResponse" "Amazonka.CertificateManagerPCA.CreatePermission" "libZSservicesZSamazonka-certificatemanager-pcaZSamazonka-certificatemanager-pca" 'False) (C1 ('MetaCons "CreatePermissionResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newCreatePermissionResponse :: CreatePermissionResponse Source #

Create a value of CreatePermissionResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.