1package Paws::EC2::TagDescription {
2  use Moose;
3  has Key => (is => 'ro', isa => 'Str', xmlname => 'key', traits => ['Unwrapped']);
4  has ResourceId => (is => 'ro', isa => 'Str', xmlname => 'resourceId', traits => ['Unwrapped']);
5  has ResourceType => (is => 'ro', isa => 'Str', xmlname => 'resourceType', traits => ['Unwrapped']);
6  has Value => (is => 'ro', isa => 'Str', xmlname => 'value', traits => ['Unwrapped']);
7}
81;
9