Interface Group.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Group.Builder,Group>,SdkBuilder<Group.Builder,Group>,SdkPojo
- Enclosing class:
- Group
@Mutable @NotThreadSafe public static interface Group.Builder extends SdkPojo, CopyableBuilder<Group.Builder,Group>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Group.BuilderfilterExpression(String filterExpression)The filter expression defining the parameters to include traces.Group.BuildergroupARN(String groupARN)The Amazon Resource Name (ARN) of the group generated based on the GroupName.Group.BuildergroupName(String groupName)The unique case-sensitive name of the group.default Group.BuilderinsightsConfiguration(Consumer<InsightsConfiguration.Builder> insightsConfiguration)The structure containing configurations related to insights.Group.BuilderinsightsConfiguration(InsightsConfiguration insightsConfiguration)The structure containing configurations related to insights.-
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
-
groupName
Group.Builder groupName(String groupName)
The unique case-sensitive name of the group.
- Parameters:
groupName- The unique case-sensitive name of the group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupARN
Group.Builder groupARN(String groupARN)
The Amazon Resource Name (ARN) of the group generated based on the GroupName.
- Parameters:
groupARN- The Amazon Resource Name (ARN) of the group generated based on the GroupName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filterExpression
Group.Builder filterExpression(String filterExpression)
The filter expression defining the parameters to include traces.
- Parameters:
filterExpression- The filter expression defining the parameters to include traces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
insightsConfiguration
Group.Builder insightsConfiguration(InsightsConfiguration insightsConfiguration)
The structure containing configurations related to insights.
-
The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
-
The NotificationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.
- Parameters:
insightsConfiguration- The structure containing configurations related to insights.-
The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
-
The NotificationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
insightsConfiguration
default Group.Builder insightsConfiguration(Consumer<InsightsConfiguration.Builder> insightsConfiguration)
The structure containing configurations related to insights.
-
The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
-
The NotificationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.
InsightsConfiguration.Builderavoiding the need to create one manually viaInsightsConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toinsightsConfiguration(InsightsConfiguration).- Parameters:
insightsConfiguration- a consumer that will call methods onInsightsConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
insightsConfiguration(InsightsConfiguration)
-
-
-