Class CfnClusterPolicy

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.682Z") @Stability(Stable) public class CfnClusterPolicy extends CfnResource implements IInspectable
A CloudFormation AWS::MSK::ClusterPolicy.

Create or update cluster policy.

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.msk.*;
 Object policy;
 CfnClusterPolicy cfnClusterPolicy = CfnClusterPolicy.Builder.create(this, "MyCfnClusterPolicy")
         .clusterArn("clusterArn")
         .policy(policy)
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnClusterPolicy

      protected CfnClusterPolicy(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnClusterPolicy

      protected CfnClusterPolicy(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnClusterPolicy

      @Stability(Stable) public CfnClusterPolicy(@NotNull Construct scope, @NotNull String id, @NotNull CfnClusterPolicyProps props)
      Create a new AWS::MSK::ClusterPolicy.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrCurrentVersion

      @Stability(Stable) @NotNull public String getAttrCurrentVersion()
      The current version of the policy attached to the specified cluster.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getClusterArn

      @Stability(Stable) @NotNull public String getClusterArn()
      The Amazon Resource Name (ARN) that uniquely identifies the cluster.
    • setClusterArn

      @Stability(Stable) public void setClusterArn(@NotNull String value)
      The Amazon Resource Name (ARN) that uniquely identifies the cluster.
    • getPolicy

      @Stability(Stable) @NotNull public Object getPolicy()
      Resource policy for the cluster.
    • setPolicy

      @Stability(Stable) public void setPolicy(@NotNull Object value)
      Resource policy for the cluster.