Interface CfnStackSetConstraintProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStackSetConstraintProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.778Z")
@Stability(Stable)
public interface CfnStackSetConstraintProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnStackSetConstraint
.
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.servicecatalog.*; CfnStackSetConstraintProps cfnStackSetConstraintProps = CfnStackSetConstraintProps.builder() .accountList(List.of("accountList")) .adminRole("adminRole") .description("description") .executionRole("executionRole") .portfolioId("portfolioId") .productId("productId") .regionList(List.of("regionList")) .stackInstanceControl("stackInstanceControl") // the properties below are optional .acceptLanguage("acceptLanguage") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStackSetConstraintProps
static final class
An implementation forCfnStackSetConstraintProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The language code.One or more AWS accounts that will have access to the provisioned product.AdminRole ARN.The description of the constraint.ExecutionRole name.The portfolio identifier.The product identifier.One or more AWS Regions where the provisioned product will be available.Permission to create, update, and delete stack instances.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountList
One or more AWS accounts that will have access to the provisioned product. -
getAdminRole
AdminRole ARN. -
getDescription
The description of the constraint. -
getExecutionRole
ExecutionRole name. -
getPortfolioId
The portfolio identifier. -
getProductId
The product identifier. -
getRegionList
One or more AWS Regions where the provisioned product will be available.Applicable only to a
CFN_STACKSET
provisioned product type.The specified Regions should be within the list of Regions from the
STACKSET
constraint. To get the list of Regions in theSTACKSET
constraint, use theDescribeProvisioningParameters
operation.If no values are specified, the default value is all Regions from the
STACKSET
constraint. -
getStackInstanceControl
Permission to create, update, and delete stack instances.Choose from ALLOWED and NOT_ALLOWED.
-
getAcceptLanguage
The language code.jp
- Japanesezh
- Chinese
-
builder
- Returns:
- a
CfnStackSetConstraintProps.Builder
ofCfnStackSetConstraintProps
-