@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.075Z") @Stability(value=Stable) public class CfnLaunchRoleConstraint extends CfnResource implements IInspectable
Specifies a launch constraint.
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.*;
CfnLaunchRoleConstraint cfnLaunchRoleConstraint = CfnLaunchRoleConstraint.Builder.create(this, "MyCfnLaunchRoleConstraint")
.portfolioId("portfolioId")
.productId("productId")
// the properties below are optional
.acceptLanguage("acceptLanguage")
.description("description")
.localRoleName("localRoleName")
.roleArn("roleArn")
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnLaunchRoleConstraint.Builder
A fluent builder for
CfnLaunchRoleConstraint. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnLaunchRoleConstraint(software.constructs.Construct scope,
String id,
CfnLaunchRoleConstraintProps props)
Create a new `AWS::ServiceCatalog::LaunchRoleConstraint`.
|
protected |
CfnLaunchRoleConstraint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnLaunchRoleConstraint(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAcceptLanguage()
The language code.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getDescription()
The description of the constraint.
|
String |
getLocalRoleName()
You are required to specify either the `RoleArn` or the `LocalRoleName` but can't use both.
|
String |
getPortfolioId()
The portfolio identifier.
|
String |
getProductId()
The product identifier.
|
String |
getRoleArn()
The ARN of the launch role.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setAcceptLanguage(String value)
The language code.
|
void |
setDescription(String value)
The description of the constraint.
|
void |
setLocalRoleName(String value)
You are required to specify either the `RoleArn` or the `LocalRoleName` but can't use both.
|
void |
setPortfolioId(String value)
The portfolio identifier.
|
void |
setProductId(String value)
The product identifier.
|
void |
setRoleArn(String value)
The ARN of the launch role.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnLaunchRoleConstraint(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnLaunchRoleConstraint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnLaunchRoleConstraint(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnLaunchRoleConstraintProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public String getPortfolioId()
@Stability(value=Stable)
public void setPortfolioId(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getProductId()
@Stability(value=Stable)
public void setProductId(@NotNull
String value)
@Stability(value=Stable) @Nullable public String getAcceptLanguage()
en - English (default)jp - Japanesezh - Chinese@Stability(value=Stable)
public void setAcceptLanguage(@Nullable
String value)
en - English (default)jp - Japanesezh - Chinese@Stability(value=Stable) @Nullable public String getDescription()
@Stability(value=Stable)
public void setDescription(@Nullable
String value)
@Stability(value=Stable) @Nullable public String getLocalRoleName()
If you specify the LocalRoleName property, when an account uses the launch constraint, the IAM role with that name in the account will be used. This allows launch-role constraints to be account-agnostic so the administrator can create fewer resources per shared account.
The given role name must exist in the account used to create the launch constraint and the account of the user who launches a product with this launch constraint.
@Stability(value=Stable)
public void setLocalRoleName(@Nullable
String value)
If you specify the LocalRoleName property, when an account uses the launch constraint, the IAM role with that name in the account will be used. This allows launch-role constraints to be account-agnostic so the administrator can create fewer resources per shared account.
The given role name must exist in the account used to create the launch constraint and the account of the user who launches a product with this launch constraint.
@Stability(value=Stable) @Nullable public String getRoleArn()
You are required to specify RoleArn or LocalRoleName but can't use both.
@Stability(value=Stable)
public void setRoleArn(@Nullable
String value)
You are required to specify RoleArn or LocalRoleName but can't use both.
Copyright © 2022. All rights reserved.