Member Junction
    Preparing search index...

    Action for retrieving metadata about a file object in a storage provider.

    await runAction({
    ActionName: 'Get Storage Object Metadata',
    Params: [{
    Name: 'StorageAccount',
    Value: 'AWS S3 Storage'
    }, {
    Name: 'ObjectName',
    Value: 'reports/annual-report.pdf'
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Get metadata for a storage object

      Parameters

      • params: RunActionParams

        The action parameters:

        • StorageAccount: Required - Name of the storage provider
        • ObjectName: Required if ObjectID not provided - Name/path of the object
        • ObjectID: Optional - Provider-specific object ID (bypasses path resolution for faster access)

      Returns Promise<ActionResultSimple>

      Operation result with metadata fields:

      • Name: File name
      • Path: Directory path
      • FullPath: Complete path
      • Size: File size in bytes
      • ContentType: MIME type
      • LastModified: Last modified timestamp
      • IsDirectory: Whether object is a directory
      • ETag: Entity tag (if available)
      • CustomMetadata: Custom metadata key-value pairs (if available)