Interface TemplateSourceAnalysis.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TemplateSourceAnalysis.Builder,TemplateSourceAnalysis>,SdkBuilder<TemplateSourceAnalysis.Builder,TemplateSourceAnalysis>,SdkPojo
- Enclosing class:
- TemplateSourceAnalysis
@Mutable @NotThreadSafe public static interface TemplateSourceAnalysis.Builder extends SdkPojo, CopyableBuilder<TemplateSourceAnalysis.Builder,TemplateSourceAnalysis>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TemplateSourceAnalysis.Builderarn(String arn)The Amazon Resource Name (ARN) of the resource.TemplateSourceAnalysis.BuilderdataSetReferences(Collection<DataSetReference> dataSetReferences)A structure containing information about the dataset references used as placeholders in the template.TemplateSourceAnalysis.BuilderdataSetReferences(Consumer<DataSetReference.Builder>... dataSetReferences)A structure containing information about the dataset references used as placeholders in the template.TemplateSourceAnalysis.BuilderdataSetReferences(DataSetReference... dataSetReferences)A structure containing information about the dataset references used as placeholders in the template.-
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
-
arn
TemplateSourceAnalysis.Builder arn(String arn)
The Amazon Resource Name (ARN) of the resource.
- Parameters:
arn- The Amazon Resource Name (ARN) of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetReferences
TemplateSourceAnalysis.Builder dataSetReferences(Collection<DataSetReference> dataSetReferences)
A structure containing information about the dataset references used as placeholders in the template.
- Parameters:
dataSetReferences- A structure containing information about the dataset references used as placeholders in the template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetReferences
TemplateSourceAnalysis.Builder dataSetReferences(DataSetReference... dataSetReferences)
A structure containing information about the dataset references used as placeholders in the template.
- Parameters:
dataSetReferences- A structure containing information about the dataset references used as placeholders in the template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetReferences
TemplateSourceAnalysis.Builder dataSetReferences(Consumer<DataSetReference.Builder>... dataSetReferences)
A structure containing information about the dataset references used as placeholders in the template.
This is a convenience method that creates an instance of theDataSetReference.Builderavoiding the need to create one manually viaDataSetReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dataSetReferences(List.) - Parameters:
dataSetReferences- a consumer that will call methods onDataSetReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dataSetReferences(java.util.Collection)
-
-