Interface ITableReference
A reference to a Table resource.
Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITableReference
Syntax (vb)
Public Interface ITableReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DynamoDB;
var tableReference = new TableReference {
TableArn = "tableArn",
TableName = "tableName"
};
Synopsis
Properties
TableArn | The ARN of the Table resource. |
TableName | The TableName of the Table resource. |
Properties
TableArn
The ARN of the Table resource.
string TableArn { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
TableName
The TableName of the Table resource.
string TableName { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated