1
2package Paws::ECS::DiscoverPollEndpoint {
3  use Moose;
4  has cluster => (is => 'ro', isa => 'Str');
5  has containerInstance => (is => 'ro', isa => 'Str');
6
7  use MooseX::ClassAttribute;
8
9  class_has _api_call => (isa => 'Str', is => 'ro', default => 'DiscoverPollEndpoint');
10  class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ECS::DiscoverPollEndpointResponse');
11  class_has _result_key => (isa => 'Str', is => 'ro');
12}
131;
14
15### main pod documentation begin ###
16
17=head1 NAME
18
19Paws::ECS::DiscoverPollEndpoint - Arguments for method DiscoverPollEndpoint on Paws::ECS
20
21=head1 DESCRIPTION
22
23This class represents the parameters used for calling the method DiscoverPollEndpoint on the
24Amazon EC2 Container Service service. Use the attributes of this class
25as arguments to method DiscoverPollEndpoint.
26
27You shouln't make instances of this class. Each attribute should be used as a named argument in the call to DiscoverPollEndpoint.
28
29As an example:
30
31  $service_obj->DiscoverPollEndpoint(Att1 => $value1, Att2 => $value2, ...);
32
33Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
34
35=head1 ATTRIBUTES
36
37=head2 cluster => Str
38
39
40
41The cluster that the container instance belongs to.
42
43
44
45
46
47
48
49
50
51
52=head2 containerInstance => Str
53
54
55
56The container instance UUID or full Amazon Resource Name (ARN) of the
57container instance. The ARN contains the C<arn:aws:ecs> namespace,
58followed by the region of the container instance, the AWS account ID of
59the container instance owner, the C<container-instance> namespace, and
60then the container instance UUID. For example,
61arn:aws:ecs:I<region>:I<aws_account_id>:container-instance/I<container_instance_UUID>.
62
63
64
65
66
67
68
69
70
71
72
73
74=head1 SEE ALSO
75
76This class forms part of L<Paws>, documenting arguments for method DiscoverPollEndpoint in L<Paws::ECS>
77
78=head1 BUGS and CONTRIBUTIONS
79
80The source code is located here: https://github.com/pplu/aws-sdk-perl
81
82Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
83
84=cut
85
86