You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The resources for the IAM policy statement that will be added to the scheduler role's policy
62
-
* to allow the scheduler to make the API call.
63
-
*/
64
-
readonlyiamResources: string[];
65
-
66
-
/**
67
-
* The action for the IAM policy statement that will be added to the scheduler role's policy
68
-
* to allow the scheduler to make the API call.
69
-
*
70
-
* Use this in cases where the IAM action name does not match the
71
-
* API service/action name, e.g., `lambda:invoke` requires `lambda:InvokeFunction` permission.
72
-
*
73
-
* @default - service:action
74
-
*/
75
-
readonlyiamAction?: string;
76
-
77
-
/**
78
-
* The conditions for the IAM policy statement that will be added to the scheduler role's policy
79
-
* to allow the scheduler to make the API call.
61
+
* The IAM policy statements needed to invoke the target. These statements are attached to the Scheduler's role.
80
62
*
81
-
* @default - no conditions
82
-
*/
83
-
readonlyiamConditions?: {[key: string]: any};
84
-
85
-
/**
86
-
* Additional IAM policy statements that will be added to the scheduler role's policy.
63
+
* Note that the default may not be the correct actions as not all AWS services follows the same IAM action pattern, or there may be more actions needed to invoke the target.
87
64
*
88
-
* @default - no additional policy statements
65
+
* @default - Policy with `service:action` action only.
0 commit comments