FlowLogTagFieldSpecification constructor

const FlowLogTagFieldSpecification({
  1. required Input<String> resourceType,
  2. required Input<List<String>> tagKeys,
})

Creates a new FlowLogTagFieldSpecification. resourceType Resource type to associate the tag keys with. Valid values: instance, network-interface, auto-scaling-group. tagKeys Ordered list of tag keys, on resources of resourceType, to display in Flow Log records. The position of each key determines which field it populates in logFormat (e.g., the first instance tag key populates $${instance-tag} and the second populates $${instance-tag-2}).

Implementation

const FlowLogTagFieldSpecification({
  required this.resourceType,
  required this.tagKeys,
});