Interface JobFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobFilter.Builder,JobFilter>,SdkBuilder<JobFilter.Builder,JobFilter>,SdkPojo
- Enclosing class:
- JobFilter
public static interface JobFilter.Builder extends SdkPojo, CopyableBuilder<JobFilter.Builder,JobFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobFilter.Buildername(String name)The name of the filter.JobFilter.Buildername(JobFilterName name)The name of the filter.JobFilter.Buildervalues(String... values)The value of the filter.JobFilter.Buildervalues(Collection<String> values)The value of the filter.-
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
-
name
JobFilter.Builder name(String name)
The name of the filter.
Specify
ResourceTypeto return export jobs of a specific resource type (for example,Ec2Instance).Specify
JobStatusto return export jobs with a specific status (e.g,Complete).- Parameters:
name- The name of the filter.Specify
ResourceTypeto return export jobs of a specific resource type (for example,Ec2Instance).Specify
JobStatusto return export jobs with a specific status (e.g,Complete).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobFilterName,JobFilterName
-
name
JobFilter.Builder name(JobFilterName name)
The name of the filter.
Specify
ResourceTypeto return export jobs of a specific resource type (for example,Ec2Instance).Specify
JobStatusto return export jobs with a specific status (e.g,Complete).- Parameters:
name- The name of the filter.Specify
ResourceTypeto return export jobs of a specific resource type (for example,Ec2Instance).Specify
JobStatusto return export jobs with a specific status (e.g,Complete).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobFilterName,JobFilterName
-
values
JobFilter.Builder values(Collection<String> values)
The value of the filter.
The valid values for this parameter are as follows, depending on what you specify for the
nameparameter:-
Specify
Ec2InstanceorAutoScalingGroupif you specify thenameparameter asResourceType. There is no filter for EBS volumes because volume recommendations cannot be exported at this time. -
Specify
Queued,InProgress,Complete, orFailedif you specify thenameparameter asJobStatus.
- Parameters:
values- The value of the filter.The valid values for this parameter are as follows, depending on what you specify for the
nameparameter:-
Specify
Ec2InstanceorAutoScalingGroupif you specify thenameparameter asResourceType. There is no filter for EBS volumes because volume recommendations cannot be exported at this time. -
Specify
Queued,InProgress,Complete, orFailedif you specify thenameparameter asJobStatus.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
values
JobFilter.Builder values(String... values)
The value of the filter.
The valid values for this parameter are as follows, depending on what you specify for the
nameparameter:-
Specify
Ec2InstanceorAutoScalingGroupif you specify thenameparameter asResourceType. There is no filter for EBS volumes because volume recommendations cannot be exported at this time. -
Specify
Queued,InProgress,Complete, orFailedif you specify thenameparameter asJobStatus.
- Parameters:
values- The value of the filter.The valid values for this parameter are as follows, depending on what you specify for the
nameparameter:-
Specify
Ec2InstanceorAutoScalingGroupif you specify thenameparameter asResourceType. There is no filter for EBS volumes because volume recommendations cannot be exported at this time. -
Specify
Queued,InProgress,Complete, orFailedif you specify thenameparameter asJobStatus.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-