Interface CfnPermissionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPermissionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:16.254Z")
@Stability(Stable)
public interface CfnPermissionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPermissionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.acmpca.*;
CfnPermissionMixinProps cfnPermissionMixinProps = CfnPermissionMixinProps.builder()
.actions(List.of("actions"))
.certificateAuthorityArn("certificateAuthorityArn")
.principal("principal")
.sourceAccount("sourceAccount")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPermissionMixinPropsstatic final classAn implementation forCfnPermissionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The private CA actions that can be performed by the designated AWS service.default ObjectThe Amazon Resource Number (ARN) of the private CA from which the permission was issued.default StringThe 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
-
getActions
The private CA actions that can be performed by the designated AWS service.Supported actions are
IssueCertificate,GetCertificate, andListPermissions.- See Also:
-
getCertificateAuthorityArn
The Amazon Resource Number (ARN) of the private CA from which the permission was issued.Returns union: either
StringorICertificateAuthorityRef- See Also:
-
getPrincipal
The AWS service or entity that holds the permission.At this time, the only valid principal is
acm.amazonaws.com.- See Also:
-
getSourceAccount
The ID of the account that assigned the permission.- See Also:
-
builder
- Returns:
- a
CfnPermissionMixinProps.BuilderofCfnPermissionMixinProps
-