Interface CloudwatchLogsExportConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CloudwatchLogsExportConfiguration.Builder,CloudwatchLogsExportConfiguration>,SdkBuilder<CloudwatchLogsExportConfiguration.Builder,CloudwatchLogsExportConfiguration>,SdkPojo
- Enclosing class:
- CloudwatchLogsExportConfiguration
public static interface CloudwatchLogsExportConfiguration.Builder extends SdkPojo, CopyableBuilder<CloudwatchLogsExportConfiguration.Builder,CloudwatchLogsExportConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CloudwatchLogsExportConfiguration.BuilderdisableLogTypes(String... disableLogTypes)The list of log types to disable.CloudwatchLogsExportConfiguration.BuilderdisableLogTypes(Collection<String> disableLogTypes)The list of log types to disable.CloudwatchLogsExportConfiguration.BuilderenableLogTypes(String... enableLogTypes)The list of log types to enable.CloudwatchLogsExportConfiguration.BuilderenableLogTypes(Collection<String> enableLogTypes)The list of log types to enable.-
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
-
enableLogTypes
CloudwatchLogsExportConfiguration.Builder enableLogTypes(Collection<String> enableLogTypes)
The list of log types to enable.
- Parameters:
enableLogTypes- The list of log types to enable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enableLogTypes
CloudwatchLogsExportConfiguration.Builder enableLogTypes(String... enableLogTypes)
The list of log types to enable.
- Parameters:
enableLogTypes- The list of log types to enable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
disableLogTypes
CloudwatchLogsExportConfiguration.Builder disableLogTypes(Collection<String> disableLogTypes)
The list of log types to disable.
- Parameters:
disableLogTypes- The list of log types to disable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
disableLogTypes
CloudwatchLogsExportConfiguration.Builder disableLogTypes(String... disableLogTypes)
The list of log types to disable.
- Parameters:
disableLogTypes- The list of log types to disable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-