Class CfnLimitsProfile

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:16.521Z") @Stability(Stable) public class CfnLimitsProfile extends CfnResource implements IInspectable, ILimitsProfileRef
Definition of AWS::QuickSight::LimitsProfile Resource Type.

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.quicksight.*;
 CfnLimitsProfile cfnLimitsProfile = CfnLimitsProfile.Builder.create(this, "MyCfnLimitsProfile")
         .accountId("accountId")
         .profileName("profileName")
         .resourceLimits(Map.of(
                 "resourceLimitsKey", ProfileLimitValueProperty.builder()
                         .maxValue(123)
                         .unit("unit")
                         .build()))
         // the properties below are optional
         .description("description")
         .build();
 

See Also:
  • 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

    • CfnLimitsProfile

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

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

      @Stability(Stable) public CfnLimitsProfile(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnLimitsProfileProps props)
      Create a new AWS::QuickSight::LimitsProfile.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • arnForLimitsProfile

      @Stability(Stable) @NotNull public static String arnForLimitsProfile(@NotNull ILimitsProfileRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnLimitsProfile

      @Stability(Stable) @NotNull public static Boolean isCfnLimitsProfile(@NotNull Object x)
      Checks whether the given object is a CfnLimitsProfile.

      Parameters:
      x - This parameter is required.
    • 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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
    • getAttrProfileId

      @Stability(Stable) @NotNull public String getAttrProfileId()
    • getAttrUpdatedAt

      @Stability(Stable) @NotNull public String getAttrUpdatedAt()
    • getCfnProperties

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

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getLimitsProfileRef

      @Stability(Stable) @NotNull public LimitsProfileReference getLimitsProfileRef()
      A reference to a LimitsProfile resource.
      Specified by:
      getLimitsProfileRef in interface ILimitsProfileRef
    • getAccountId

      @Stability(Stable) @NotNull public String getAccountId()
    • setAccountId

      @Stability(Stable) public void setAccountId(@NotNull String value)
    • getProfileName

      @Stability(Stable) @NotNull public String getProfileName()
    • setProfileName

      @Stability(Stable) public void setProfileName(@NotNull String value)
    • getResourceLimits

      @Stability(Stable) @NotNull public Object getResourceLimits()
      Returns union: either IResolvable or Mapinvalid input: '<'String, either IResolvable or CfnLimitsProfile.ProfileLimitValueProperty>
    • setResourceLimits

      @Stability(Stable) public void setResourceLimits(@NotNull IResolvable value)
    • setResourceLimits

      @Stability(Stable) public void setResourceLimits(@NotNull Map<String,Object> value)
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)