A developer needs to retrieve all data from an Amazon DynamoDB table that matches a particular partition key.
Which solutions will meet this requirement in the MOST operationally efficient way? (Select TWO.)
Use the Scan API and a filter expression to match on the key.
Use the GetItem API with a request parameter for key that contains the partition key name and specific key value.
Use the ExecuteStatement API and a filter expression to match on the key.
Use the GetItem API and a PartiQL statement to match on the key.
Use the ExecuteStatement API and a PartiQL statement to match on the key.
Submit