Workforce constructor

Workforce({
  1. required String workforceArn,
  2. required String workforceName,
  3. CognitoConfig? cognitoConfig,
  4. DateTime? createDate,
  5. DateTime? lastUpdatedDate,
  6. OidcConfigForResponse? oidcConfig,
  7. SourceIpConfig? sourceIpConfig,
  8. String? subDomain,
})

Implementation

Workforce({
  required this.workforceArn,
  required this.workforceName,
  this.cognitoConfig,
  this.createDate,
  this.lastUpdatedDate,
  this.oidcConfig,
  this.sourceIpConfig,
  this.subDomain,
});