Source constructor

Source({
  1. required String name,
  2. required String sourceArn,
  3. int? dataTransferSubscriberFeePercent,
  4. Encryption? decryption,
  5. String? description,
  6. String? entitlementArn,
  7. String? ingestIp,
  8. int? ingestPort,
  9. Transport? transport,
  10. String? vpcInterfaceName,
  11. String? whitelistCidr,
})

Implementation

Source({
  required this.name,
  required this.sourceArn,
  this.dataTransferSubscriberFeePercent,
  this.decryption,
  this.description,
  this.entitlementArn,
  this.ingestIp,
  this.ingestPort,
  this.transport,
  this.vpcInterfaceName,
  this.whitelistCidr,
});