Interface ConnectorEntity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectorEntity.Builder,ConnectorEntity>,SdkBuilder<ConnectorEntity.Builder,ConnectorEntity>,SdkPojo
- Enclosing class:
- ConnectorEntity
public static interface ConnectorEntity.Builder extends SdkPojo, CopyableBuilder<ConnectorEntity.Builder,ConnectorEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorEntity.BuilderhasNestedEntities(Boolean hasNestedEntities)Specifies whether the connector entity is a parent or a category and has more entities nested underneath it.ConnectorEntity.Builderlabel(String label)The label applied to the connector entity.ConnectorEntity.Buildername(String name)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, sdkFields
-
-
-
-
Method Detail
-
name
ConnectorEntity.Builder name(String 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
ConnectorEntity.Builder label(String 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
ConnectorEntity.Builder hasNestedEntities(Boolean 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.
-
-