Interface ConnectorEntity.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ConnectorEntity.Builder,
,ConnectorEntity> SdkBuilder<ConnectorEntity.Builder,
,ConnectorEntity> SdkPojo
- Enclosing class:
ConnectorEntity
@Mutable
@NotThreadSafe
public static interface ConnectorEntity.Builder
extends SdkPojo, CopyableBuilder<ConnectorEntity.Builder,ConnectorEntity>
-
Method Summary
Modifier and TypeMethodDescriptionhasNestedEntities
(Boolean hasNestedEntities) Specifies whether the connector entity is a parent or a category and has more entities nested underneath it.The label applied to the connector entity.The name of the connector entity.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 Details
-
name
The name of the connector entity.
- Parameters:
name
- The name of the connector entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
label
The label applied to the connector entity.
- Parameters:
label
- The label applied to the connector entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hasNestedEntities
Specifies whether the connector entity is a parent or a category and has more entities nested underneath it. If another call is made with
entitiesPath = "the_current_entity_name_with_hasNestedEntities_true"
, then it returns the nested entities underneath it. This provides a way to retrieve all supported entities in a recursive fashion.- Parameters:
hasNestedEntities
- Specifies whether the connector entity is a parent or a category and has more entities nested underneath it. If another call is made withentitiesPath = "the_current_entity_name_with_hasNestedEntities_true"
, then it returns the nested entities underneath it. This provides a way to retrieve all supported entities in a recursive fashion.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-