Class: Aws::ACMPCA::Types::CreatePermissionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::CreatePermissionRequest
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Array<String>
The actions that the specified Amazon Web Services service principal can use.
-
#certificate_authority_arn ⇒ String
The Amazon Resource Name (ARN) of the CA that grants the permissions.
-
#principal ⇒ String
The Amazon Web Services service or identity that receives the permission.
-
#source_account ⇒ String
The ID of the calling account.
Instance Attribute Details
#actions ⇒ Array<String>
The actions that the specified Amazon Web Services service principal
can use. These include IssueCertificate
, GetCertificate
, and
ListPermissions
.
625 626 627 628 629 630 631 632 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 625 class CreatePermissionRequest < Struct.new( :certificate_authority_arn, :principal, :source_account, :actions) SENSITIVE = [] include Aws::Structure end |
#certificate_authority_arn ⇒ String
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
.
625 626 627 628 629 630 631 632 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 625 class CreatePermissionRequest < Struct.new( :certificate_authority_arn, :principal, :source_account, :actions) SENSITIVE = [] include Aws::Structure end |
#principal ⇒ String
The Amazon Web Services service or identity that receives the
permission. At this time, the only valid principal is
acm.amazonaws.com
.
625 626 627 628 629 630 631 632 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 625 class CreatePermissionRequest < Struct.new( :certificate_authority_arn, :principal, :source_account, :actions) SENSITIVE = [] include Aws::Structure end |
#source_account ⇒ String
The ID of the calling account.
625 626 627 628 629 630 631 632 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 625 class CreatePermissionRequest < Struct.new( :certificate_authority_arn, :principal, :source_account, :actions) SENSITIVE = [] include Aws::Structure end |