Interface ViewDefinition.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ViewDefinition.Builder,,ViewDefinition> SdkBuilder<ViewDefinition.Builder,,ViewDefinition> SdkPojo
- Enclosing class:
ViewDefinition
-
Method Summary
Modifier and TypeMethodDescriptionThe definer of a view in SQL.isProtected(Boolean isProtected) You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning.lastRefreshType(String lastRefreshType) Sets the method used for the most recent refresh.lastRefreshType(LastRefreshType lastRefreshType) Sets the method used for the most recent refresh.refreshSeconds(Long refreshSeconds) Auto refresh interval in seconds for the materialized view.representations(Collection<ViewRepresentation> representations) A list of representations.representations(Consumer<ViewRepresentation.Builder>... representations) A list of representations.representations(ViewRepresentation... representations) A list of representations.subObjects(String... subObjects) A list of table Amazon Resource Names (ARNs).subObjects(Collection<String> subObjects) A list of table Amazon Resource Names (ARNs).subObjectVersionIds(Long... subObjectVersionIds) List of the Apache Iceberg table versions referenced by the materialized view.subObjectVersionIds(Collection<Long> subObjectVersionIds) List of the Apache Iceberg table versions referenced by the materialized view.viewVersionId(Long viewVersionId) The ID value that identifies this view's version.viewVersionToken(String viewVersionToken) The version ID of the Apache Iceberg table.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
isProtected
You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
- Parameters:
isProtected- You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
definer
The definer of a view in SQL.
- Parameters:
definer- The definer of a view in SQL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
viewVersionId
The ID value that identifies this view's version. For materialized views, the version ID is the Apache Iceberg table's snapshot ID.
- Parameters:
viewVersionId- The ID value that identifies this view's version. For materialized views, the version ID is the Apache Iceberg table's snapshot ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
viewVersionToken
The version ID of the Apache Iceberg table.
- Parameters:
viewVersionToken- The version ID of the Apache Iceberg table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
refreshSeconds
Auto refresh interval in seconds for the materialized view. If not specified, the view will not automatically refresh.
- Parameters:
refreshSeconds- Auto refresh interval in seconds for the materialized view. If not specified, the view will not automatically refresh.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastRefreshType
Sets the method used for the most recent refresh.
- Parameters:
lastRefreshType- Sets the method used for the most recent refresh.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
lastRefreshType
Sets the method used for the most recent refresh.
- Parameters:
lastRefreshType- Sets the method used for the most recent refresh.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
subObjects
A list of table Amazon Resource Names (ARNs).
- Parameters:
subObjects- A list of table Amazon Resource Names (ARNs).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subObjects
A list of table Amazon Resource Names (ARNs).
- Parameters:
subObjects- A list of table Amazon Resource Names (ARNs).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subObjectVersionIds
List of the Apache Iceberg table versions referenced by the materialized view.
- Parameters:
subObjectVersionIds- List of the Apache Iceberg table versions referenced by the materialized view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subObjectVersionIds
List of the Apache Iceberg table versions referenced by the materialized view.
- Parameters:
subObjectVersionIds- List of the Apache Iceberg table versions referenced by the materialized view.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
representations
A list of representations.
- Parameters:
representations- A list of representations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
representations
A list of representations.
- Parameters:
representations- A list of representations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
representations
A list of representations.
This is a convenience method that creates an instance of theViewRepresentation.Builderavoiding the need to create one manually viaViewRepresentation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torepresentations(List<ViewRepresentation>).- Parameters:
representations- a consumer that will call methods onViewRepresentation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-