Permission constructor

Permission({
  1. List<ActionType>? actions,
  2. String? certificateAuthorityArn,
  3. DateTime? createdAt,
  4. String? policy,
  5. String? principal,
  6. String? sourceAccount,
})

Implementation

Permission({
  this.actions,
  this.certificateAuthorityArn,
  this.createdAt,
  this.policy,
  this.principal,
  this.sourceAccount,
});