All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.dynamodb.model.GlobalSecondaryIndex Maven / Gradle / Ivy

Go to download

A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.

There is a newer version: 2.5.20
Show newest version
/*
 * Copyright 2013-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.dynamodb.model;

import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.Consumer;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.core.protocol.ProtocolMarshaller;
import software.amazon.awssdk.core.protocol.StructuredPojo;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.services.dynamodb.transform.GlobalSecondaryIndexMarshaller;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* Represents the properties of a global secondary index. *

*/ @Generated("software.amazon.awssdk:codegen") public final class GlobalSecondaryIndex implements StructuredPojo, ToCopyableBuilder { private final String indexName; private final List keySchema; private final Projection projection; private final ProvisionedThroughput provisionedThroughput; private GlobalSecondaryIndex(BuilderImpl builder) { this.indexName = builder.indexName; this.keySchema = builder.keySchema; this.projection = builder.projection; this.provisionedThroughput = builder.provisionedThroughput; } /** *

* The name of the global secondary index. The name must be unique among all other indexes on this table. *

* * @return The name of the global secondary index. The name must be unique among all other indexes on this table. */ public String indexName() { return indexName; } /** *

* The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and * key types: *

*
    *
  • *

    * HASH - partition key *

    *
  • *
  • *

    * RANGE - sort key *

    *
  • *
* *

* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from * DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their * partition key values. *

*

* The sort key of an item is also known as its range attribute. The term "range attribute" derives from the * way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key * value. *

*
*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

* * @return The complete key schema for a global secondary index, which consists of one or more pairs of attribute * names and key types:

*
    *
  • *

    * HASH - partition key *

    *
  • *
  • *

    * RANGE - sort key *

    *
  • *
* *

* The partition key of an item is also known as its hash attribute. The term "hash attribute" * derives from DynamoDB' usage of an internal hash function to evenly distribute data items across * partitions, based on their partition key values. *

*

* The sort key of an item is also known as its range attribute. The term "range attribute" derives * from the way DynamoDB stores items with the same partition key physically close together, in sorted order * by the sort key value. *

*/ public List keySchema() { return keySchema; } /** *

* Represents attributes that are copied (projected) from the table into the global secondary index. These are in * addition to the primary key attributes and index key attributes, which are automatically projected. *

* * @return Represents attributes that are copied (projected) from the table into the global secondary index. These * are in addition to the primary key attributes and index key attributes, which are automatically * projected. */ public Projection projection() { return projection; } /** *

* Represents the provisioned throughput settings for the specified global secondary index. *

*

* For current minimum and maximum provisioned throughput values, see Limits in the Amazon * DynamoDB Developer Guide. *

* * @return Represents the provisioned throughput settings for the specified global secondary index.

*

* For current minimum and maximum provisioned throughput values, see Limits in the * Amazon DynamoDB Developer Guide. */ public ProvisionedThroughput provisionedThroughput() { return provisionedThroughput; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(indexName()); hashCode = 31 * hashCode + Objects.hashCode(keySchema()); hashCode = 31 * hashCode + Objects.hashCode(projection()); hashCode = 31 * hashCode + Objects.hashCode(provisionedThroughput()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof GlobalSecondaryIndex)) { return false; } GlobalSecondaryIndex other = (GlobalSecondaryIndex) obj; return Objects.equals(indexName(), other.indexName()) && Objects.equals(keySchema(), other.keySchema()) && Objects.equals(projection(), other.projection()) && Objects.equals(provisionedThroughput(), other.provisionedThroughput()); } @Override public String toString() { return ToString.builder("GlobalSecondaryIndex").add("IndexName", indexName()).add("KeySchema", keySchema()) .add("Projection", projection()).add("ProvisionedThroughput", provisionedThroughput()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "IndexName": return Optional.ofNullable(clazz.cast(indexName())); case "KeySchema": return Optional.ofNullable(clazz.cast(keySchema())); case "Projection": return Optional.ofNullable(clazz.cast(projection())); case "ProvisionedThroughput": return Optional.ofNullable(clazz.cast(provisionedThroughput())); default: return Optional.empty(); } } @SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { GlobalSecondaryIndexMarshaller.getInstance().marshall(this, protocolMarshaller); } public interface Builder extends CopyableBuilder { /** *

* The name of the global secondary index. The name must be unique among all other indexes on this table. *

* * @param indexName * The name of the global secondary index. The name must be unique among all other indexes on this table. * @return Returns a reference to this object so that method calls can be chained together. */ Builder indexName(String indexName); /** *

* The complete key schema for a global secondary index, which consists of one or more pairs of attribute names * and key types: *

*
    *
  • *

    * HASH - partition key *

    *
  • *
  • *

    * RANGE - sort key *

    *
  • *
* *

* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives * from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on * their partition key values. *

*

* The sort key of an item is also known as its range attribute. The term "range attribute" derives from * the way DynamoDB stores items with the same partition key physically close together, in sorted order by the * sort key value. *

*
* * @param keySchema * The complete key schema for a global secondary index, which consists of one or more pairs of attribute * names and key types:

*
    *
  • *

    * HASH - partition key *

    *
  • *
  • *

    * RANGE - sort key *

    *
  • *
* *

* The partition key of an item is also known as its hash attribute. The term "hash attribute" * derives from DynamoDB' usage of an internal hash function to evenly distribute data items across * partitions, based on their partition key values. *

*

* The sort key of an item is also known as its range attribute. The term "range attribute" * derives from the way DynamoDB stores items with the same partition key physically close together, in * sorted order by the sort key value. *

* @return Returns a reference to this object so that method calls can be chained together. */ Builder keySchema(Collection keySchema); /** *

* The complete key schema for a global secondary index, which consists of one or more pairs of attribute names * and key types: *

*
    *
  • *

    * HASH - partition key *

    *
  • *
  • *

    * RANGE - sort key *

    *
  • *
* *

* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives * from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on * their partition key values. *

*

* The sort key of an item is also known as its range attribute. The term "range attribute" derives from * the way DynamoDB stores items with the same partition key physically close together, in sorted order by the * sort key value. *

*
* * @param keySchema * The complete key schema for a global secondary index, which consists of one or more pairs of attribute * names and key types:

*
    *
  • *

    * HASH - partition key *

    *
  • *
  • *

    * RANGE - sort key *

    *
  • *
* *

* The partition key of an item is also known as its hash attribute. The term "hash attribute" * derives from DynamoDB' usage of an internal hash function to evenly distribute data items across * partitions, based on their partition key values. *

*

* The sort key of an item is also known as its range attribute. The term "range attribute" * derives from the way DynamoDB stores items with the same partition key physically close together, in * sorted order by the sort key value. *

* @return Returns a reference to this object so that method calls can be chained together. */ Builder keySchema(KeySchemaElement... keySchema); /** *

* The complete key schema for a global secondary index, which consists of one or more pairs of attribute names * and key types: *

*
    *
  • *

    * HASH - partition key *

    *
  • *
  • *

    * RANGE - sort key *

    *
  • *
* *

* The partition key of an item is also known as its hash attribute. The term "hash attribute" derives * from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on * their partition key values. *

*

* The sort key of an item is also known as its range attribute. The term "range attribute" derives from * the way DynamoDB stores items with the same partition key physically close together, in sorted order by the * sort key value. *

*
This is a convenience that creates an instance of the {@link List.Builder} avoiding * the need to create one manually via {@link List#builder()}. * * When the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and * its result is passed to {@link #keySchema(List)}. * * @param keySchema * a consumer that will call methods on {@link List.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #keySchema(List) */ Builder keySchema(Consumer... keySchema); /** *

* Represents attributes that are copied (projected) from the table into the global secondary index. These are * in addition to the primary key attributes and index key attributes, which are automatically projected. *

* * @param projection * Represents attributes that are copied (projected) from the table into the global secondary index. * These are in addition to the primary key attributes and index key attributes, which are automatically * projected. * @return Returns a reference to this object so that method calls can be chained together. */ Builder projection(Projection projection); /** *

* Represents attributes that are copied (projected) from the table into the global secondary index. These are * in addition to the primary key attributes and index key attributes, which are automatically projected. *

* This is a convenience that creates an instance of the {@link Projection.Builder} avoiding the need to create * one manually via {@link Projection#builder()}. * * When the {@link Consumer} completes, {@link Projection.Builder#build()} is called immediately and its result * is passed to {@link #projection(Projection)}. * * @param projection * a consumer that will call methods on {@link Projection.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #projection(Projection) */ default Builder projection(Consumer projection) { return projection(Projection.builder().applyMutation(projection).build()); } /** *

* Represents the provisioned throughput settings for the specified global secondary index. *

*

* For current minimum and maximum provisioned throughput values, see Limits in the * Amazon DynamoDB Developer Guide. *

* * @param provisionedThroughput * Represents the provisioned throughput settings for the specified global secondary index.

*

* For current minimum and maximum provisioned throughput values, see Limits in the * Amazon DynamoDB Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ Builder provisionedThroughput(ProvisionedThroughput provisionedThroughput); /** *

* Represents the provisioned throughput settings for the specified global secondary index. *

*

* For current minimum and maximum provisioned throughput values, see Limits in the * Amazon DynamoDB Developer Guide. *

* This is a convenience that creates an instance of the {@link ProvisionedThroughput.Builder} avoiding the need * to create one manually via {@link ProvisionedThroughput#builder()}. * * When the {@link Consumer} completes, {@link ProvisionedThroughput.Builder#build()} is called immediately and * its result is passed to {@link #provisionedThroughput(ProvisionedThroughput)}. * * @param provisionedThroughput * a consumer that will call methods on {@link ProvisionedThroughput.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #provisionedThroughput(ProvisionedThroughput) */ default Builder provisionedThroughput(Consumer provisionedThroughput) { return provisionedThroughput(ProvisionedThroughput.builder().applyMutation(provisionedThroughput).build()); } } static final class BuilderImpl implements Builder { private String indexName; private List keySchema = DefaultSdkAutoConstructList.getInstance(); private Projection projection; private ProvisionedThroughput provisionedThroughput; private BuilderImpl() { } private BuilderImpl(GlobalSecondaryIndex model) { indexName(model.indexName); keySchema(model.keySchema); projection(model.projection); provisionedThroughput(model.provisionedThroughput); } public final String getIndexName() { return indexName; } @Override public final Builder indexName(String indexName) { this.indexName = indexName; return this; } public final void setIndexName(String indexName) { this.indexName = indexName; } public final Collection getKeySchema() { return keySchema != null ? keySchema.stream().map(KeySchemaElement::toBuilder).collect(Collectors.toList()) : null; } @Override public final Builder keySchema(Collection keySchema) { this.keySchema = KeySchemaCopier.copy(keySchema); return this; } @Override @SafeVarargs public final Builder keySchema(KeySchemaElement... keySchema) { keySchema(Arrays.asList(keySchema)); return this; } @Override @SafeVarargs public final Builder keySchema(Consumer... keySchema) { keySchema(Stream.of(keySchema).map(c -> KeySchemaElement.builder().applyMutation(c).build()) .collect(Collectors.toList())); return this; } public final void setKeySchema(Collection keySchema) { this.keySchema = KeySchemaCopier.copyFromBuilder(keySchema); } public final Projection.Builder getProjection() { return projection != null ? projection.toBuilder() : null; } @Override public final Builder projection(Projection projection) { this.projection = projection; return this; } public final void setProjection(Projection.BuilderImpl projection) { this.projection = projection != null ? projection.build() : null; } public final ProvisionedThroughput.Builder getProvisionedThroughput() { return provisionedThroughput != null ? provisionedThroughput.toBuilder() : null; } @Override public final Builder provisionedThroughput(ProvisionedThroughput provisionedThroughput) { this.provisionedThroughput = provisionedThroughput; return this; } public final void setProvisionedThroughput(ProvisionedThroughput.BuilderImpl provisionedThroughput) { this.provisionedThroughput = provisionedThroughput != null ? provisionedThroughput.build() : null; } @Override public GlobalSecondaryIndex build() { return new GlobalSecondaryIndex(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy