Show / Hide Table of Contents

Class TableGlobalSecondaryIndexArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TableGlobalSecondaryIndexArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.DynamoDB.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TableGlobalSecondaryIndexArgs : ResourceArgs

Constructors

View Source

TableGlobalSecondaryIndexArgs()

Declaration
public TableGlobalSecondaryIndexArgs()

Properties

View Source

HashKey

The name of the hash key in the index; must be defined as an attribute in the resource.

Declaration
public Input<string> HashKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the index

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NonKeyAttributes

Only required with INCLUDE as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table.

Declaration
public InputList<string> NonKeyAttributes { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

ProjectionType

One of ALL, INCLUDE or KEYS_ONLY where ALL projects every attribute into the index, KEYS_ONLY projects just the hash and range key into the index, and INCLUDE projects only the keys specified in the non_key_attributes parameter.

Declaration
public Input<string> ProjectionType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RangeKey

The name of the range key; must be defined

Declaration
public Input<string> RangeKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ReadCapacity

The number of read units for this index. Must be set if billing_mode is set to PROVISIONED.

Declaration
public Input<int> ReadCapacity { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

WriteCapacity

The number of write units for this index. Must be set if billing_mode is set to PROVISIONED.

Declaration
public Input<int> WriteCapacity { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.