Interface ReplayDestination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReplayDestination.Builder,ReplayDestination>,SdkBuilder<ReplayDestination.Builder,ReplayDestination>,SdkPojo
- Enclosing class:
- ReplayDestination
public static interface ReplayDestination.Builder extends SdkPojo, CopyableBuilder<ReplayDestination.Builder,ReplayDestination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReplayDestination.Builderarn(String arn)The ARN of the event bus to replay event to.ReplayDestination.BuilderfilterArns(String... filterArns)A list of ARNs for rules to replay events to.ReplayDestination.BuilderfilterArns(Collection<String> filterArns)A list of ARNs for rules to replay events to.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
arn
ReplayDestination.Builder arn(String arn)
The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.
- Parameters:
arn- The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filterArns
ReplayDestination.Builder filterArns(Collection<String> filterArns)
A list of ARNs for rules to replay events to.
- Parameters:
filterArns- A list of ARNs for rules to replay events to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filterArns
ReplayDestination.Builder filterArns(String... filterArns)
A list of ARNs for rules to replay events to.
- Parameters:
filterArns- A list of ARNs for rules to replay events to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-