Class: Aws::ACMPCA::Types::DeletePermissionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-acmpca/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_authority_arnString

The Amazon Resource Number (ARN) of the private CA that issued the permissions. You can find the CA’s ARN by calling the

ListCertificateAuthorities][1

action. This must have the following

form:

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

[1]: docs.aws.amazon.com/privateca/latest/APIReference/API_ListCertificateAuthorities.html

Returns:

  • (String)


990
991
992
993
994
995
996
# File 'lib/aws-sdk-acmpca/types.rb', line 990

class DeletePermissionRequest < Struct.new(
  :certificate_authority_arn,
  :principal,
  :source_account)
  SENSITIVE = []
  include Aws::Structure
end

#principalString

The Amazon Web Services service or identity that will have its CA permissions revoked. At this time, the only valid service principal is ‘acm.amazonaws.com`

Returns:

  • (String)


990
991
992
993
994
995
996
# File 'lib/aws-sdk-acmpca/types.rb', line 990

class DeletePermissionRequest < Struct.new(
  :certificate_authority_arn,
  :principal,
  :source_account)
  SENSITIVE = []
  include Aws::Structure
end

#source_accountString

The Amazon Web Services account that calls this action.

Returns:

  • (String)


990
991
992
993
994
995
996
# File 'lib/aws-sdk-acmpca/types.rb', line 990

class DeletePermissionRequest < Struct.new(
  :certificate_authority_arn,
  :principal,
  :source_account)
  SENSITIVE = []
  include Aws::Structure
end