GetResourceCollectionArgs constructor

const GetResourceCollectionArgs({
  1. Input<String?>? region,
  2. required Input<String> type,
})

Creates a new GetResourceCollectionArgs. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. type Type of AWS resource collection to create. Valid values are AWS_CLOUD_FORMATION, AWS_SERVICE, and AWS_TAGS.

Implementation

const GetResourceCollectionArgs({
  this.region,
  required this.type,
});