Class CfnLaunchRoleConstraint
- All Implemented Interfaces:
IConstruct
,IDependable
,IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
AWS::ServiceCatalog::LaunchRoleConstraint
.
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();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnLaunchRoleConstraint
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCfnLaunchRoleConstraint
(Construct scope, String id, CfnLaunchRoleConstraintProps props) Create a newAWS::ServiceCatalog::LaunchRoleConstraint
.protected
CfnLaunchRoleConstraint
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnLaunchRoleConstraint
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe language code.The description of the constraint.You are required to specify either theRoleArn
or theLocalRoleName
but can't use both.The portfolio identifier.The product identifier.The ARN of the launch role.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.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 theRoleArn
or theLocalRoleName
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.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnLaunchRoleConstraint
protected CfnLaunchRoleConstraint(software.amazon.jsii.JsiiObjectRef objRef) -
CfnLaunchRoleConstraint
protected CfnLaunchRoleConstraint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnLaunchRoleConstraint
@Stability(Stable) public CfnLaunchRoleConstraint(@NotNull Construct scope, @NotNull String id, @NotNull CfnLaunchRoleConstraintProps props) Create a newAWS::ServiceCatalog::LaunchRoleConstraint
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
props
-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getPortfolioId
The portfolio identifier. -
setPortfolioId
The portfolio identifier. -
getProductId
The product identifier. -
setProductId
The product identifier. -
getAcceptLanguage
The language code.jp
- Japanesezh
- Chinese
-
setAcceptLanguage
The language code.jp
- Japanesezh
- Chinese
-
getDescription
The description of the constraint. -
setDescription
The description of the constraint. -
getLocalRoleName
You are required to specify either theRoleArn
or theLocalRoleName
but can't use both.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.
-
setLocalRoleName
You are required to specify either theRoleArn
or theLocalRoleName
but can't use both.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.
-
getRoleArn
The ARN of the launch role.You are required to specify
RoleArn
orLocalRoleName
but can't use both. -
setRoleArn
The ARN of the launch role.You are required to specify
RoleArn
orLocalRoleName
but can't use both.
-