Output constructor

Output({
  1. required String name,
  2. required String outputArn,
  3. int? dataTransferSubscriberFeePercent,
  4. String? description,
  5. String? destination,
  6. Encryption? encryption,
  7. String? entitlementArn,
  8. String? mediaLiveInputArn,
  9. int? port,
  10. Transport? transport,
  11. VpcInterfaceAttachment? vpcInterfaceAttachment,
})

Implementation

Output({
  required this.name,
  required this.outputArn,
  this.dataTransferSubscriberFeePercent,
  this.description,
  this.destination,
  this.encryption,
  this.entitlementArn,
  this.mediaLiveInputArn,
  this.port,
  this.transport,
  this.vpcInterfaceAttachment,
});