@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.000Z") @Stability(value=Stable) public interface CfnPermissionProps extends software.amazon.jsii.JsiiSerializable
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() |
List<String> |
getActions()
The private CA actions that can be performed by the designated AWS service.
|
String |
getCertificateAuthorityArn()
The Amazon Resource Number (ARN) of the private CA from which the permission was issued.
|
String |
getPrincipal()
The AWS service or entity that holds the permission.
|
default String |
getSourceAccount()
The ID of the account that assigned the permission.
|
@Stability(value=Stable) @NotNull List<String> getActions()
Supported actions are IssueCertificate , GetCertificate , and ListPermissions .
@Stability(value=Stable) @NotNull String getCertificateAuthorityArn()
@Stability(value=Stable) @NotNull String getPrincipal()
At this time, the only valid principal is acm.amazonaws.com .
@Stability(value=Stable) @Nullable default String getSourceAccount()
@Stability(value=Stable) static CfnPermissionProps.Builder builder()
CfnPermissionProps.Builder of CfnPermissionPropsCopyright © 2022. All rights reserved.