NAME
Paws::ServiceCatalog::CreateConstraint - Arguments for method CreateConstraint on Paws::ServiceCatalog
DESCRIPTION
This class represents the parameters used for calling the method CreateConstraint on the AWS Service Catalog service. Use the attributes of this class as arguments to method CreateConstraint.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateConstraint.
SYNOPSIS
my $servicecatalog = Paws->service('ServiceCatalog');
my $CreateConstraintOutput = $servicecatalog->CreateConstraint(
IdempotencyToken => 'MyIdempotencyToken',
Parameters => 'MyConstraintParameters',
PortfolioId => 'MyId',
ProductId => 'MyId',
Type => 'MyConstraintType',
AcceptLanguage => 'MyAcceptLanguage', # OPTIONAL
Description => 'MyConstraintDescription', # OPTIONAL
);
# Results:
my $ConstraintDetail = $CreateConstraintOutput->ConstraintDetail;
my $ConstraintParameters = $CreateConstraintOutput->ConstraintParameters;
my $Status = $CreateConstraintOutput->Status;
# Returns a L<Paws::ServiceCatalog::CreateConstraintOutput> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog/CreateConstraint
ATTRIBUTES
AcceptLanguage => Str
The language code.
en- English (default)jp- Japanesezh- Chinese
Description => Str
The description of the constraint.
REQUIRED IdempotencyToken => Str
A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
REQUIRED Parameters => Str
The constraint parameters, in JSON format. The syntax depends on the constraint type as follows:
- LAUNCH
-
Specify the
RoleArnproperty as follows:{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"}You cannot have both a
LAUNCHand aSTACKSETconstraint.You also cannot have more than one
LAUNCHconstraint on a product and portfolio. - NOTIFICATION
-
Specify the
NotificationArnsproperty as follows:{"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]} - RESOURCE_UPDATE
-
Specify the
TagUpdatesOnProvisionedProductproperty as follows:{"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}}The
TagUpdatesOnProvisionedProductproperty accepts a string value ofALLOWEDorNOT_ALLOWED. - STACKSET
-
Specify the
Parametersproperty as follows:{"Version": "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole": "String"}}You cannot have both a
LAUNCHand aSTACKSETconstraint.You also cannot have more than one
STACKSETconstraint on a product and portfolio.Products with a
STACKSETconstraint will launch an AWS CloudFormation stack set. - TEMPLATE
-
Specify the
Rulesproperty. For more information, see Template Constraint Rules (http://docs.aws.amazon.com/servicecatalog/latest/adminguide/reference-template_constraint_rules.html).
REQUIRED PortfolioId => Str
The portfolio identifier.
REQUIRED ProductId => Str
The product identifier.
REQUIRED Type => Str
The type of constraint.
LAUNCHNOTIFICATIONRESOURCE_UPDATESTACKSETTEMPLATE
SEE ALSO
This class forms part of Paws, documenting arguments for method CreateConstraint in Paws::ServiceCatalog
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues