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();
 
  • Method Details

    • getAction

      @Stability(Stable) @NotNull String getAction()
      The AWS Signer action permitted as part of cross-account permissions.
    • getPrincipal

      @Stability(Stable) @NotNull String getPrincipal()
      The AWS principal receiving cross-account permissions.

      This may be an IAM role or another AWS account ID.

    • getProfileName

      @Stability(Stable) @NotNull String getProfileName()
      The human-readable name of the signing profile.
    • getStatementId

      @Stability(Stable) @NotNull String getStatementId()
      A unique identifier for the cross-account permission statement.
    • getProfileVersion

      @Stability(Stable) @Nullable default String getProfileVersion()
      The version of the signing profile.
    • builder

      @Stability(Stable) static CfnProfilePermissionProps.Builder builder()
      Returns:
      a CfnProfilePermissionProps.Builder of CfnProfilePermissionProps