CreateGlobalSecondaryIndexAction
public struct CreateGlobalSecondaryIndexAction : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the global secondary index to be created.
Declaration
Swift
public let indexName: String
-
The key schema for the global secondary index.
Declaration
Swift
public let keySchema: [KeySchemaElement]
-
Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.
Declaration
Swift
public let projection: 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.
Declaration
Swift
public let provisionedThroughput: ProvisionedThroughput?
-
Undocumented
Declaration
Swift
public init(indexName: String, keySchema: [KeySchemaElement], projection: Projection, provisionedThroughput: ProvisionedThroughput? = nil)
-
Declaration
Swift
public func validate(name: String) throws