Interface AWSAPICallViaCloudTrail.DeletedBranch
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.DeletedBranch.Jsii$Proxy
- Enclosing class:
AWSAPICallViaCloudTrail
@Stability(Experimental)
public static interface AWSAPICallViaCloudTrail.DeletedBranch
extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for DeletedBranch.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.codecommit.events.*;
DeletedBranch deletedBranch = DeletedBranch.builder()
.branchName(List.of("branchName"))
.commitId(List.of("commitId"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.DeletedBranchstatic final classAn implementation forAWSAPICallViaCloudTrail.DeletedBranch -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) branchName property.(experimental) commitId property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBranchName
(experimental) branchName property.Specify an array of string values to match this event if the actual value of branchName is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getCommitId
(experimental) commitId property.Specify an array of string values to match this event if the actual value of commitId is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-