# Generated by default/object.tt package Paws::SSM::MaintenanceWindowTarget; use Moose; has Description => (is => 'ro', isa => 'Str'); has Name => (is => 'ro', isa => 'Str'); has OwnerInformation => (is => 'ro', isa => 'Str'); has ResourceType => (is => 'ro', isa => 'Str'); has Targets => (is => 'ro', isa => 'ArrayRef[Paws::SSM::Target]'); has WindowId => (is => 'ro', isa => 'Str'); has WindowTargetId => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::SSM::MaintenanceWindowTarget =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SSM::MaintenanceWindowTarget object: $service_obj->Method(Att1 => { Description => $value, ..., WindowTargetId => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::MaintenanceWindowTarget object: $result = $service_obj->Method(...); $result->Att1->Description =head1 DESCRIPTION The target registered with the maintenance window. =head1 ATTRIBUTES =head2 Description => Str A description for the target. =head2 Name => Str The name for the maintenance window target. =head2 OwnerInformation => Str A user-provided value that will be included in any CloudWatch events that are raised while running tasks for these targets in this maintenance window. =head2 ResourceType => Str The type of target that is being registered with the maintenance window. =head2 Targets => ArrayRef[L] The targets, either instances or tags. Specify instances using the following format: Cinstanceid1E,Einstanceid2E> Tags are specified using the following format: Ctag nameE,Values=Etag valueE>. =head2 WindowId => Str The ID of the maintenance window to register the target with. =head2 WindowTargetId => Str The ID of the target. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut