@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:25.657Z") @Stability(value=Deprecated) @Deprecated public enum CloudFormationCapabilities extends Enum<CloudFormationCapabilities>
| Enum Constant and Description |
|---|
ANONYMOUS_IAM
Deprecated.
|
AUTO_EXPAND
Deprecated.
|
NAMED_IAM
Deprecated.
|
NONE
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static CloudFormationCapabilities |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static CloudFormationCapabilities[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Deprecated) @Deprecated public static final CloudFormationCapabilities NONE
Pass this capability if you wish to block the creation IAM resources.
@Stability(value=Deprecated) @Deprecated public static final CloudFormationCapabilities ANONYMOUS_IAM
Pass this capability if you're only creating anonymous resources.
@Stability(value=Deprecated) @Deprecated public static final CloudFormationCapabilities 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=Deprecated) @Deprecated public static final CloudFormationCapabilities AUTO_EXPAND
Pass this capability if your template includes macros, for example AWS::Include or AWS::Serverless.
public static CloudFormationCapabilities[] values()
for (CloudFormationCapabilities c : CloudFormationCapabilities.values()) System.out.println(c);
public static CloudFormationCapabilities 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 © 2022. All rights reserved.