Interface CommonActionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
CloudWatchLogsActionProps,CloudWatchPutMetricActionProps,CloudWatchSetAlarmStateActionProps,DynamoDBv2PutItemActionProps,FirehosePutRecordActionProps,HttpsActionProps,IotEventsPutMessageActionProps,IotRepublishMqttActionProps,KinesisPutRecordActionProps,OpenSearchActionProps,S3PutObjectActionProps,SnsTopicActionProps,SqsQueueActionProps,StepFunctionsStateMachineActionProps
- All Known Implementing Classes:
CloudWatchLogsActionProps.Jsii$Proxy,CloudWatchPutMetricActionProps.Jsii$Proxy,CloudWatchSetAlarmStateActionProps.Jsii$Proxy,CommonActionProps.Jsii$Proxy,DynamoDBv2PutItemActionProps.Jsii$Proxy,FirehosePutRecordActionProps.Jsii$Proxy,HttpsActionProps.Jsii$Proxy,IotEventsPutMessageActionProps.Jsii$Proxy,IotRepublishMqttActionProps.Jsii$Proxy,KinesisPutRecordActionProps.Jsii$Proxy,OpenSearchActionProps.Jsii$Proxy,S3PutObjectActionProps.Jsii$Proxy,SnsTopicActionProps.Jsii$Proxy,SqsQueueActionProps.Jsii$Proxy,StepFunctionsStateMachineActionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:27:03.671Z")
@Stability(Experimental)
public interface CommonActionProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Common properties shared by Actions it access to AWS service.
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.iot.actions.alpha.*;
import software.amazon.awscdk.services.iam.*;
Role role;
CommonActionProps commonActionProps = CommonActionProps.builder()
.role(role)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCommonActionPropsstatic final classAn implementation forCommonActionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CommonActionProps.Builderbuilder()default IRolegetRole()(experimental) The IAM role that allows access to AWS service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRole
(experimental) The IAM role that allows access to AWS service.Default: a new role will be created
-
builder
- Returns:
- a
CommonActionProps.BuilderofCommonActionProps
-