com.pulumi.aws.dynamodb.TableItemArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.dynamodb;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class TableItemArgs extends com.pulumi.resources.ResourceArgs {
public static final TableItemArgs Empty = new TableItemArgs();
/**
* Hash key to use for lookups and identification of the item
*
*/
@Import(name="hashKey", required=true)
private Output hashKey;
/**
* @return Hash key to use for lookups and identification of the item
*
*/
public Output hashKey() {
return this.hashKey;
}
/**
* JSON representation of a map of attribute name/value pairs, one for each attribute. Only the primary key attributes are required; you can optionally provide other attribute name-value pairs for the item.
*
*/
@Import(name="item", required=true)
private Output item;
/**
* @return JSON representation of a map of attribute name/value pairs, one for each attribute. Only the primary key attributes are required; you can optionally provide other attribute name-value pairs for the item.
*
*/
public Output item() {
return this.item;
}
/**
* Range key to use for lookups and identification of the item. Required if there is range key defined in the table.
*
*/
@Import(name="rangeKey")
private @Nullable Output rangeKey;
/**
* @return Range key to use for lookups and identification of the item. Required if there is range key defined in the table.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy