@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:00:42.420Z") @Stability(value=Experimental) public enum CfnCapabilities extends Enum<CfnCapabilities>
| Enum Constant and Description |
|---|
ANONYMOUS_IAM
(experimental) Capability to create anonymous IAM resources.
|
AUTO_EXPAND
(experimental) Capability to run CloudFormation macros.
|
NAMED_IAM
(experimental) Capability to create named IAM resources.
|
NONE
(experimental) No IAM Capabilities.
|
| Modifier and Type | Method and Description |
|---|---|
static CfnCapabilities |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CfnCapabilities[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final CfnCapabilities NONE
Pass this capability if you wish to block the creation IAM resources.
@Stability(value=Experimental) public static final CfnCapabilities ANONYMOUS_IAM
Pass this capability if you're only creating anonymous resources.
@Stability(value=Experimental) public static final CfnCapabilities NAMED_IAM
Pass this capability if you're creating IAM resources that have physical names.
CloudFormationCapabilities.NamedIAM implies CloudFormationCapabilities.IAM; you don't have to pass both.
@Stability(value=Experimental) public static final CfnCapabilities AUTO_EXPAND
Pass this capability if your template includes macros, for example AWS::Include or AWS::Serverless.
public static CfnCapabilities[] values()
for (CfnCapabilities c : CfnCapabilities.values()) System.out.println(c);
public static CfnCapabilities valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.