Interface CfnPermissionProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnPermissionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:29:55.293Z")
@Stability(Stable)
public interface CfnPermissionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a 
CfnPermission.
 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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPermissionPropsstatic final classAn implementation forCfnPermissionProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic CfnPermissionProps.Builderbuilder()The private CA actions that can be performed by the designated AWS service.The Amazon Resource Number (ARN) of the private CA from which the permission was issued.The AWS service or entity that holds the permission.default StringThe ID of the account that assigned the permission.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getActionsThe private CA actions that can be performed by the designated AWS service.Supported actions are IssueCertificate,GetCertificate, andListPermissions.
- 
getCertificateAuthorityArnThe Amazon Resource Number (ARN) of the private CA from which the permission was issued.
- 
getPrincipalThe AWS service or entity that holds the permission.At this time, the only valid principal is acm.amazonaws.com.
- 
getSourceAccountThe ID of the account that assigned the permission.
- 
builder- Returns:
- a CfnPermissionProps.BuilderofCfnPermissionProps
 
 
-