Interface Channel.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Channel.Builder,Channel>,SdkBuilder<Channel.Builder,Channel>,SdkPojo
- Enclosing class:
- Channel
public static interface Channel.Builder extends SdkPojo, CopyableBuilder<Channel.Builder,Channel>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Channel.BuildereventPublishers(Collection<EventPublisher> eventPublishers)List of publishers for different type of events that may be detected in an application from the profile.Channel.BuildereventPublishers(EventPublisher... eventPublishers)List of publishers for different type of events that may be detected in an application from the profile.Channel.BuildereventPublishersWithStrings(String... eventPublishers)List of publishers for different type of events that may be detected in an application from the profile.Channel.BuildereventPublishersWithStrings(Collection<String> eventPublishers)List of publishers for different type of events that may be detected in an application from the profile.Channel.Builderid(String id)Unique identifier for eachChannelin the notification configuration of a Profiling Group.Channel.Builderuri(String uri)Unique arn of the resource to be used for notifications.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
eventPublishersWithStrings
Channel.Builder eventPublishersWithStrings(Collection<String> eventPublishers)
List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.
- Parameters:
eventPublishers- List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventPublishersWithStrings
Channel.Builder eventPublishersWithStrings(String... eventPublishers)
List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.
- Parameters:
eventPublishers- List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventPublishers
Channel.Builder eventPublishers(Collection<EventPublisher> eventPublishers)
List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.
- Parameters:
eventPublishers- List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventPublishers
Channel.Builder eventPublishers(EventPublisher... eventPublishers)
List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.
- Parameters:
eventPublishers- List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
Channel.Builder id(String id)
Unique identifier for each
Channelin the notification configuration of a Profiling Group. A random UUID for channelId is used when adding a channel to the notification configuration if not specified in the request.- Parameters:
id- Unique identifier for eachChannelin the notification configuration of a Profiling Group. A random UUID for channelId is used when adding a channel to the notification configuration if not specified in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uri
Channel.Builder uri(String uri)
Unique arn of the resource to be used for notifications. We support a valid SNS topic arn as a channel uri.
- Parameters:
uri- Unique arn of the resource to be used for notifications. We support a valid SNS topic arn as a channel uri.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-