AccessControlRule constructor

AccessControlRule({
  1. List<String>? actions,
  2. DateTime? dateCreated,
  3. DateTime? dateModified,
  4. String? description,
  5. AccessControlRuleEffect? effect,
  6. List<String>? ipRanges,
  7. String? name,
  8. List<String>? notActions,
  9. List<String>? notIpRanges,
  10. List<String>? notUserIds,
  11. List<String>? userIds,
})

Implementation

AccessControlRule({
  this.actions,
  this.dateCreated,
  this.dateModified,
  this.description,
  this.effect,
  this.ipRanges,
  this.name,
  this.notActions,
  this.notIpRanges,
  this.notUserIds,
  this.userIds,
});