Interface CfnLimitsProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLimitsProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:16.522Z")
@Stability(Stable)
public interface CfnLimitsProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLimitsProfile.
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.*;
CfnLimitsProfileProps cfnLimitsProfileProps = CfnLimitsProfileProps.builder()
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLimitsProfilePropsstatic final classAn implementation forCfnLimitsProfileProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringReturns union: eitherIResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnLimitsProfile.ProfileLimitValueProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountId
- See Also:
-
getProfileName
- See Also:
-
getResourceLimits
Returns union: eitherIResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnLimitsProfile.ProfileLimitValueProperty>- See Also:
-
getDescription
- See Also:
-
builder
- Returns:
- a
CfnLimitsProfileProps.BuilderofCfnLimitsProfileProps
-