ConformancePackDetail constructor

ConformancePackDetail({
  1. required String conformancePackArn,
  2. required String conformancePackId,
  3. required String conformancePackName,
  4. List<ConformancePackInputParameter>? conformancePackInputParameters,
  5. String? createdBy,
  6. String? deliveryS3Bucket,
  7. String? deliveryS3KeyPrefix,
  8. DateTime? lastUpdateRequestedTime,
})

Implementation

ConformancePackDetail({
  required this.conformancePackArn,
  required this.conformancePackId,
  required this.conformancePackName,
  this.conformancePackInputParameters,
  this.createdBy,
  this.deliveryS3Bucket,
  this.deliveryS3KeyPrefix,
  this.lastUpdateRequestedTime,
});