Stage constructor

Stage({
  1. required String stageName,
  2. AccessLogSettings? accessLogSettings,
  3. bool? apiGatewayManaged,
  4. bool? autoDeploy,
  5. String? clientCertificateId,
  6. DateTime? createdDate,
  7. RouteSettings? defaultRouteSettings,
  8. String? deploymentId,
  9. String? description,
  10. String? lastDeploymentStatusMessage,
  11. DateTime? lastUpdatedDate,
  12. Map<String, RouteSettings>? routeSettings,
  13. Map<String, String>? stageVariables,
  14. Map<String, String>? tags,
})

Implementation

Stage({
  required this.stageName,
  this.accessLogSettings,
  this.apiGatewayManaged,
  this.autoDeploy,
  this.clientCertificateId,
  this.createdDate,
  this.defaultRouteSettings,
  this.deploymentId,
  this.description,
  this.lastDeploymentStatusMessage,
  this.lastUpdatedDate,
  this.routeSettings,
  this.stageVariables,
  this.tags,
});