Interface LogPublishingOption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LogPublishingOption.Builder,LogPublishingOption>,SdkBuilder<LogPublishingOption.Builder,LogPublishingOption>,SdkPojo
- Enclosing class:
- LogPublishingOption
@Mutable @NotThreadSafe public static interface LogPublishingOption.Builder extends SdkPojo, CopyableBuilder<LogPublishingOption.Builder,LogPublishingOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LogPublishingOption.BuildercloudWatchLogsLogGroupArn(String cloudWatchLogsLogGroupArn)The Amazon Resource Name (ARN) of the CloudWatch Logs group to publish logs to.LogPublishingOption.Builderenabled(Boolean enabled)Whether the log should be published.-
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
-
cloudWatchLogsLogGroupArn
LogPublishingOption.Builder cloudWatchLogsLogGroupArn(String cloudWatchLogsLogGroupArn)
The Amazon Resource Name (ARN) of the CloudWatch Logs group to publish logs to.
- Parameters:
cloudWatchLogsLogGroupArn- The Amazon Resource Name (ARN) of the CloudWatch Logs group to publish logs to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enabled
LogPublishingOption.Builder enabled(Boolean enabled)
Whether the log should be published.
- Parameters:
enabled- Whether the log should be published.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-