VpcPeeringConnectionAccepterRequester.fromMap constructor
Implementation
factory VpcPeeringConnectionAccepterRequester.fromMap(Map<String, dynamic> map) {
return VpcPeeringConnectionAccepterRequester(
allowRemoteVpcDnsResolution: (() { final guardedValue = map['allowRemoteVpcDnsResolution']; if (guardedValue == null) return null; return pulumi.Input.fromValue(guardedValue as bool); })(),
);
}