@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-02T20:25:24.633Z")
public interface CfnPermissionProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.acmpca.*; CfnPermissionProps cfnPermissionProps = CfnPermissionProps.builder() .actions(List.of("actions")) .certificateAuthorityArn("certificateAuthorityArn") .principal("principal") // the properties below are optional .sourceAccount("sourceAccount") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPermissionProps.Builder
A builder for
CfnPermissionProps |
static class |
CfnPermissionProps.Jsii$Proxy
An implementation for
CfnPermissionProps |
Modifier and Type | Method and Description |
---|---|
static CfnPermissionProps.Builder |
builder() |
java.util.List<java.lang.String> |
getActions()
The private CA actions that can be performed by the designated AWS service.
|
java.lang.String |
getCertificateAuthorityArn()
The Amazon Resource Number (ARN) of the private CA from which the permission was issued.
|
java.lang.String |
getPrincipal()
The AWS service or entity that holds the permission.
|
default java.lang.String |
getSourceAccount()
The ID of the account that assigned the permission.
|
java.util.List<java.lang.String> getActions()
Supported actions are IssueCertificate
, GetCertificate
, and ListPermissions
.
java.lang.String getCertificateAuthorityArn()
java.lang.String getPrincipal()
At this time, the only valid principal is acm.amazonaws.com
.
default java.lang.String getSourceAccount()
static CfnPermissionProps.Builder builder()
CfnPermissionProps.Builder
of CfnPermissionProps