VpcLink constructor

VpcLink({
  1. required String name,
  2. required List<String> securityGroupIds,
  3. required List<String> subnetIds,
  4. required String vpcLinkId,
  5. DateTime? createdDate,
  6. Map<String, String>? tags,
  7. VpcLinkStatus? vpcLinkStatus,
  8. String? vpcLinkStatusMessage,
  9. VpcLinkVersion? vpcLinkVersion,
})

Implementation

VpcLink({
  required this.name,
  required this.securityGroupIds,
  required this.subnetIds,
  required this.vpcLinkId,
  this.createdDate,
  this.tags,
  this.vpcLinkStatus,
  this.vpcLinkStatusMessage,
  this.vpcLinkVersion,
});