@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:41.883Z") public interface CommonAwsActionProps extends CommonActionProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CommonAwsActionProps.Builder
A builder for
CommonAwsActionProps |
static class |
CommonAwsActionProps.Jsii$Proxy
An implementation for
CommonAwsActionProps |
Modifier and Type | Method and Description |
---|---|
static CommonAwsActionProps.Builder |
builder() |
default IRole |
getRole()
The Role in which context's this Action will be executing in.
|
getActionName, getRunOrder, getVariablesNamespace
default IRole getRole()
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 {@link IAction.bind} method in the {@link ActionBindOptions.role} property.
Default: a new Role will be generated
static CommonAwsActionProps.Builder builder()
builder
in interface CommonActionProps
CommonAwsActionProps.Builder
of CommonAwsActionProps