Interface DependentEntity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DependentEntity.Builder,DependentEntity>,SdkBuilder<DependentEntity.Builder,DependentEntity>,SdkPojo
- Enclosing class:
- DependentEntity
public static interface DependentEntity.Builder extends SdkPojo, CopyableBuilder<DependentEntity.Builder,DependentEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DependentEntity.BuilderdependentResourceIds(String... dependentResourceIds)The Amazon Resource Names (ARNs) of the dependent resources.DependentEntity.BuilderdependentResourceIds(Collection<String> dependentResourceIds)The Amazon Resource Names (ARNs) of the dependent resources.DependentEntity.BuilderrelationType(String relationType)The type of relationship between one resource and the other resource that it is related to or depends on.-
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
-
relationType
DependentEntity.Builder relationType(String relationType)
The type of relationship between one resource and the other resource that it is related to or depends on.
- Parameters:
relationType- The type of relationship between one resource and the other resource that it is related to or depends on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dependentResourceIds
DependentEntity.Builder dependentResourceIds(Collection<String> dependentResourceIds)
The Amazon Resource Names (ARNs) of the dependent resources.
- Parameters:
dependentResourceIds- The Amazon Resource Names (ARNs) of the dependent resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dependentResourceIds
DependentEntity.Builder dependentResourceIds(String... dependentResourceIds)
The Amazon Resource Names (ARNs) of the dependent resources.
- Parameters:
dependentResourceIds- The Amazon Resource Names (ARNs) of the dependent resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-