Interface CfnResourcePolicyProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResourcePolicyProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:41.248Z") @Stability(Stable) public interface CfnResourcePolicyProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnResourcePolicy.

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.secretsmanager.*;
 Object resourcePolicy;
 CfnResourcePolicyProps cfnResourcePolicyProps = CfnResourcePolicyProps.builder()
         .resourcePolicy(resourcePolicy)
         .secretId("secretId")
         // the properties below are optional
         .blockPublicPolicy(false)
         .build();
 
  • Method Details

    • getResourcePolicy

      @Stability(Stable) @NotNull Object getResourcePolicy()
      A JSON-formatted string for an AWS resource-based policy.

      For example policies, see Permissions policy examples .

    • getSecretId

      @Stability(Stable) @NotNull String getSecretId()
      The ARN or name of the secret to attach the resource-based policy.

      For an ARN, we recommend that you specify a complete ARN rather than a partial ARN.

    • getBlockPublicPolicy

      @Stability(Stable) @Nullable default Object getBlockPublicPolicy()
      Specifies whether to block resource-based policies that allow broad access to the secret.

      By default, Secrets Manager blocks policies that allow broad access, for example those that use a wildcard for the principal.

    • builder

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