Interface CfnProfilePermissionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProfilePermissionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.803Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProfilePermissionProps
static final class
An 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 String
The 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. -
getPrincipal
The AWS principal receiving cross-account permissions.This may be an IAM role or another AWS account ID.
-
getProfileName
The human-readable name of the signing profile. -
getStatementId
A unique identifier for the cross-account permission statement. -
getProfileVersion
The version of the signing profile. -
builder
- Returns:
- a
CfnProfilePermissionProps.Builder
ofCfnProfilePermissionProps
-