Interface CommonAwsActionProps
- All Superinterfaces:
CommonActionProps
,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
CloudFormationCreateReplaceChangeSetActionProps
,CloudFormationCreateUpdateStackActionProps
,CloudFormationDeleteStackActionProps
,CloudFormationDeployStackInstancesActionProps
,CloudFormationDeployStackSetActionProps
,CloudFormationExecuteChangeSetActionProps
,CodeBuildActionProps
,CodeCommitSourceActionProps
,CodeDeployEcsDeployActionProps
,CodeDeployServerDeployActionProps
,CodeStarConnectionsSourceActionProps
,EcrSourceActionProps
,EcsDeployActionProps
,ElasticBeanstalkDeployActionProps
,LambdaInvokeActionProps
,ManualApprovalActionProps
,S3DeployActionProps
,S3SourceActionProps
,ServiceCatalogDeployActionBeta1Props
,StepFunctionsInvokeActionProps
- All Known Implementing Classes:
CloudFormationCreateReplaceChangeSetActionProps.Jsii$Proxy
,CloudFormationCreateUpdateStackActionProps.Jsii$Proxy
,CloudFormationDeleteStackActionProps.Jsii$Proxy
,CloudFormationDeployStackInstancesActionProps.Jsii$Proxy
,CloudFormationDeployStackSetActionProps.Jsii$Proxy
,CloudFormationExecuteChangeSetActionProps.Jsii$Proxy
,CodeBuildActionProps.Jsii$Proxy
,CodeCommitSourceActionProps.Jsii$Proxy
,CodeDeployEcsDeployActionProps.Jsii$Proxy
,CodeDeployServerDeployActionProps.Jsii$Proxy
,CodeStarConnectionsSourceActionProps.Jsii$Proxy
,CommonAwsActionProps.Jsii$Proxy
,EcrSourceActionProps.Jsii$Proxy
,EcsDeployActionProps.Jsii$Proxy
,ElasticBeanstalkDeployActionProps.Jsii$Proxy
,LambdaInvokeActionProps.Jsii$Proxy
,ManualApprovalActionProps.Jsii$Proxy
,S3DeployActionProps.Jsii$Proxy
,S3SourceActionProps.Jsii$Proxy
,ServiceCatalogDeployActionBeta1Props.Jsii$Proxy
,StepFunctionsInvokeActionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:56.610Z")
@Stability(Stable)
public interface CommonAwsActionProps
extends software.amazon.jsii.JsiiSerializable, CommonActionProps
Common properties shared by all Actions whose
ActionProperties.owner
field is 'AWS' (or unset, as 'AWS' is the default).
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.codepipeline.*; import software.amazon.awscdk.services.iam.*; Role role; CommonAwsActionProps commonAwsActionProps = CommonAwsActionProps.builder() .actionName("actionName") // the properties below are optional .role(role) .runOrder(123) .variablesNamespace("variablesNamespace") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCommonAwsActionProps
static final class
An implementation forCommonAwsActionProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CommonAwsActionProps.Builder
builder()
default IRole
getRole()
The Role in which context's this Action will be executing in.Methods inherited from interface software.amazon.awscdk.services.codepipeline.CommonActionProps
getActionName, getRunOrder, getVariablesNamespace
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRole
The Role in which context's this Action will be executing in.The Pipeline's Role will assume this Role (the required permissions for that will be granted automatically) right before executing this Action. This Action will be passed into your
IAction.bind
method in theActionBindOptions.role
property.Default: a new Role will be generated
-
builder
- Returns:
- a
CommonAwsActionProps.Builder
ofCommonAwsActionProps
-