https://pulumi.com logo
b

brainy-magician-83981

01/24/2019, 12:25 AM
When a Target or Policy type requires a
resourceId
, how do you obtain it? For example:
Copy code
let ddb_tbl = new aws.dynamodb.Table("mytable", ...);
let scalable_target = new aws.appautoscaling.Target('my_scalable_target', {
  resourceId: 'table/' + ddbl_table.name
});
The resourceId setting above does not work.