GetInvocationArgs constructor

const GetInvocationArgs({
  1. required Input<String> functionName,
  2. required Input<String> input,
  3. Input<String?>? qualifier,
  4. Input<String?>? region,
  5. Input<String?>? tenantId,
})

Creates a new GetInvocationArgs. functionName Name of the Lambda function. input String in JSON format that is passed as payload to the Lambda function. qualifier Qualifier (a.k.a version) of the Lambda function. Defaults to $LATEST. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. tenantId Tenant Id to serve invocations from specified tenant.

Implementation

const GetInvocationArgs({
  required this.functionName,
  required this.input,
  this.qualifier,
  this.region,
  this.tenantId,
});