Interface CreateLogAnomalyDetectorRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CloudWatchLogsRequest.Builder
,CopyableBuilder<CreateLogAnomalyDetectorRequest.Builder,CreateLogAnomalyDetectorRequest>
,SdkBuilder<CreateLogAnomalyDetectorRequest.Builder,CreateLogAnomalyDetectorRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateLogAnomalyDetectorRequest
public static interface CreateLogAnomalyDetectorRequest.Builder extends CloudWatchLogsRequest.Builder, SdkPojo, CopyableBuilder<CreateLogAnomalyDetectorRequest.Builder,CreateLogAnomalyDetectorRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateLogAnomalyDetectorRequest.Builder
anomalyVisibilityTime(Long anomalyVisibilityTime)
The number of days to have visibility on an anomaly.CreateLogAnomalyDetectorRequest.Builder
detectorName(String detectorName)
A name for this anomaly detector.CreateLogAnomalyDetectorRequest.Builder
evaluationFrequency(String evaluationFrequency)
Specifies how often the anomaly detector is to run and look for anomalies.CreateLogAnomalyDetectorRequest.Builder
evaluationFrequency(EvaluationFrequency evaluationFrequency)
Specifies how often the anomaly detector is to run and look for anomalies.CreateLogAnomalyDetectorRequest.Builder
filterPattern(String filterPattern)
You can use this parameter to limit the anomaly detection model to examine only log events that match the pattern you specify here.CreateLogAnomalyDetectorRequest.Builder
kmsKeyId(String kmsKeyId)
Optionally assigns a KMS key to secure this anomaly detector and its findings.CreateLogAnomalyDetectorRequest.Builder
logGroupArnList(String... logGroupArnList)
An array containing the ARNs of the log groups that this anomaly detector will watch.CreateLogAnomalyDetectorRequest.Builder
logGroupArnList(Collection<String> logGroupArnList)
An array containing the ARNs of the log groups that this anomaly detector will watch.CreateLogAnomalyDetectorRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateLogAnomalyDetectorRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateLogAnomalyDetectorRequest.Builder
tags(Map<String,String> tags)
An optional list of key-value pairs to associate with the resource.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudwatchlogs.model.CloudWatchLogsRequest.Builder
build
-
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
-
logGroupArnList
CreateLogAnomalyDetectorRequest.Builder logGroupArnList(Collection<String> logGroupArnList)
An array containing the ARNs of the log groups that this anomaly detector will watch. You must specify at least one ARN.
- Parameters:
logGroupArnList
- An array containing the ARNs of the log groups that this anomaly detector will watch. You must specify at least one ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logGroupArnList
CreateLogAnomalyDetectorRequest.Builder logGroupArnList(String... logGroupArnList)
An array containing the ARNs of the log groups that this anomaly detector will watch. You must specify at least one ARN.
- Parameters:
logGroupArnList
- An array containing the ARNs of the log groups that this anomaly detector will watch. You must specify at least one ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
detectorName
CreateLogAnomalyDetectorRequest.Builder detectorName(String detectorName)
A name for this anomaly detector.
- Parameters:
detectorName
- A name for this anomaly detector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evaluationFrequency
CreateLogAnomalyDetectorRequest.Builder evaluationFrequency(String evaluationFrequency)
Specifies how often the anomaly detector is to run and look for anomalies. Set this value according to the frequency that the log group receives new logs. For example, if the log group receives new log events every 10 minutes, then 15 minutes might be a good setting for
evaluationFrequency
.- Parameters:
evaluationFrequency
- Specifies how often the anomaly detector is to run and look for anomalies. Set this value according to the frequency that the log group receives new logs. For example, if the log group receives new log events every 10 minutes, then 15 minutes might be a good setting forevaluationFrequency
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EvaluationFrequency
,EvaluationFrequency
-
evaluationFrequency
CreateLogAnomalyDetectorRequest.Builder evaluationFrequency(EvaluationFrequency evaluationFrequency)
Specifies how often the anomaly detector is to run and look for anomalies. Set this value according to the frequency that the log group receives new logs. For example, if the log group receives new log events every 10 minutes, then 15 minutes might be a good setting for
evaluationFrequency
.- Parameters:
evaluationFrequency
- Specifies how often the anomaly detector is to run and look for anomalies. Set this value according to the frequency that the log group receives new logs. For example, if the log group receives new log events every 10 minutes, then 15 minutes might be a good setting forevaluationFrequency
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EvaluationFrequency
,EvaluationFrequency
-
filterPattern
CreateLogAnomalyDetectorRequest.Builder filterPattern(String filterPattern)
You can use this parameter to limit the anomaly detection model to examine only log events that match the pattern you specify here. For more information, see Filter and Pattern Syntax.
- Parameters:
filterPattern
- You can use this parameter to limit the anomaly detection model to examine only log events that match the pattern you specify here. For more information, see Filter and Pattern Syntax.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKeyId
CreateLogAnomalyDetectorRequest.Builder kmsKeyId(String kmsKeyId)
Optionally assigns a KMS key to secure this anomaly detector and its findings. If a key is assigned, the anomalies found and the model used by this detector are encrypted at rest with the key. If a key is assigned to an anomaly detector, a user must have permissions for both this key and for the anomaly detector to retrieve information about the anomalies that it finds.
For more information about using a KMS key and to see the required IAM policy, see Use a KMS key with an anomaly detector.
- Parameters:
kmsKeyId
- Optionally assigns a KMS key to secure this anomaly detector and its findings. If a key is assigned, the anomalies found and the model used by this detector are encrypted at rest with the key. If a key is assigned to an anomaly detector, a user must have permissions for both this key and for the anomaly detector to retrieve information about the anomalies that it finds.For more information about using a KMS key and to see the required IAM policy, see Use a KMS key with an anomaly detector.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
anomalyVisibilityTime
CreateLogAnomalyDetectorRequest.Builder anomalyVisibilityTime(Long anomalyVisibilityTime)
The number of days to have visibility on an anomaly. After this time period has elapsed for an anomaly, it will be automatically baselined and the anomaly detector will treat new occurrences of a similar anomaly as normal. Therefore, if you do not correct the cause of an anomaly during the time period specified in
anomalyVisibilityTime
, it will be considered normal going forward and will not be detected as an anomaly.- Parameters:
anomalyVisibilityTime
- The number of days to have visibility on an anomaly. After this time period has elapsed for an anomaly, it will be automatically baselined and the anomaly detector will treat new occurrences of a similar anomaly as normal. Therefore, if you do not correct the cause of an anomaly during the time period specified inanomalyVisibilityTime
, it will be considered normal going forward and will not be detected as an anomaly.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateLogAnomalyDetectorRequest.Builder tags(Map<String,String> tags)
An optional list of key-value pairs to associate with the resource.
For more information about tagging, see Tagging Amazon Web Services resources
- Parameters:
tags
- An optional list of key-value pairs to associate with the resource.For more information about tagging, see Tagging Amazon Web Services resources
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateLogAnomalyDetectorRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateLogAnomalyDetectorRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-