ProjectArgs constructor

const ProjectArgs({
  1. Input<String?>? description,
  2. required Input<String> displayName,
  3. Input<String?>? region,
  4. required Input<String> spaceName,
})

Creates a new ProjectArgs. description The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose. displayName The friendly name of the project that will be displayed to users. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. spaceName The name of the space.

Implementation

const ProjectArgs({
  this.description,
  required this.displayName,
  this.region,
  required this.spaceName,
});