FlowLogTagFieldSpecification.fromMap constructor
Implementation
factory FlowLogTagFieldSpecification.fromMap(Map<String, dynamic> map) {
return FlowLogTagFieldSpecification(
resourceType: pulumi.Input.fromValue(map['resourceType'] as String),
tagKeys: pulumi.Input.fromValue((map['tagKeys'] as List).cast<String>()),
);
}