MonitorLocalResource constructor

const MonitorLocalResource({
  1. required Input<String> identifier,
  2. required Input<String> type,
})

Creates a new MonitorLocalResource. identifier The identifier of the resource. For VPC resources, this is the VPC ARN. type The type of the resource. Valid values are AWS::EC2::VPC, AWS::EC2::Subnet, AWS::EC2::AvailabilityZone, AWS::EC2::Region, and AWS::EKS::Cluster.

Implementation

const MonitorLocalResource({
  required this.identifier,
  required this.type,
});