Interface CfnProfilePermissionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProfilePermissionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:49.001Z")
@Stability(Stable)
public interface CfnProfilePermissionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnProfilePermission.
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.signer.*;
CfnProfilePermissionProps cfnProfilePermissionProps = CfnProfilePermissionProps.builder()
.action("action")
.principal("principal")
.profileName("profileName")
.statementId("statementId")
// the properties below are optional
.profileVersion("profileVersion")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProfilePermissionPropsstatic final classAn implementation forCfnProfilePermissionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The AWS Signer action permitted as part of cross-account permissions.The AWS principal receiving cross-account permissions.The human-readable name of the signing profile.default StringThe version of the signing profile.A unique identifier for the cross-account permission statement.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
The AWS Signer action permitted as part of cross-account permissions.- See Also:
-
getPrincipal
The AWS principal receiving cross-account permissions.This may be an IAM role or another AWS account ID.
- See Also:
-
getProfileName
The human-readable name of the signing profile.- See Also:
-
getStatementId
A unique identifier for the cross-account permission statement.- See Also:
-
getProfileVersion
The version of the signing profile.- See Also:
-
builder
- Returns:
- a
CfnProfilePermissionProps.BuilderofCfnProfilePermissionProps
-