1 2package Paws::ECS::RegisterContainerInstance { 3 use Moose; 4 has cluster => (is => 'ro', isa => 'Str'); 5 has containerInstanceArn => (is => 'ro', isa => 'Str'); 6 has instanceIdentityDocument => (is => 'ro', isa => 'Str'); 7 has instanceIdentityDocumentSignature => (is => 'ro', isa => 'Str'); 8 has totalResources => (is => 'ro', isa => 'ArrayRef[Paws::ECS::Resource]'); 9 has versionInfo => (is => 'ro', isa => 'Paws::ECS::VersionInfo'); 10 11 use MooseX::ClassAttribute; 12 13 class_has _api_call => (isa => 'Str', is => 'ro', default => 'RegisterContainerInstance'); 14 class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ECS::RegisterContainerInstanceResponse'); 15 class_has _result_key => (isa => 'Str', is => 'ro'); 16} 171; 18 19### main pod documentation begin ### 20 21=head1 NAME 22 23Paws::ECS::RegisterContainerInstance - Arguments for method RegisterContainerInstance on Paws::ECS 24 25=head1 DESCRIPTION 26 27This class represents the parameters used for calling the method RegisterContainerInstance on the 28Amazon EC2 Container Service service. Use the attributes of this class 29as arguments to method RegisterContainerInstance. 30 31You shouln't make instances of this class. Each attribute should be used as a named argument in the call to RegisterContainerInstance. 32 33As an example: 34 35 $service_obj->RegisterContainerInstance(Att1 => $value1, Att2 => $value2, ...); 36 37Values 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. 38 39=head1 ATTRIBUTES 40 41=head2 cluster => Str 42 43 44 45The short name or full Amazon Resource Name (ARN) of the cluster that 46you want to register your container instance with. If you do not 47specify a cluster, the default cluster is assumed.. 48 49 50 51 52 53 54 55 56 57 58=head2 containerInstanceArn => Str 59 60 61 62The Amazon Resource Name (ARN) of the container instance (if it was 63previously registered). 64 65 66 67 68 69 70 71 72 73 74=head2 instanceIdentityDocument => Str 75 76 77 78The instance identity document for the Amazon EC2 instance to register. 79This document can be found by running the following command from the 80instance: C<curl 81http://169.254.169.254/latest/dynamic/instance-identity/document/> 82 83 84 85 86 87 88 89 90 91 92=head2 instanceIdentityDocumentSignature => Str 93 94 95 96The instance identity document signature for the Amazon EC2 instance to 97register. This signature can be found by running the following command 98from the instance: C<curl 99http://169.254.169.254/latest/dynamic/instance-identity/signature/> 100 101 102 103 104 105 106 107 108 109 110=head2 totalResources => ArrayRef[Paws::ECS::Resource] 111 112 113 114The resources available on the instance. 115 116 117 118 119 120 121 122 123 124 125=head2 versionInfo => Paws::ECS::VersionInfo 126 127 128 129The version information for the Amazon ECS container agent and Docker 130daemon running on the container instance. 131 132 133 134 135 136 137 138 139 140 141 142 143=head1 SEE ALSO 144 145This class forms part of L<Paws>, documenting arguments for method RegisterContainerInstance in L<Paws::ECS> 146 147=head1 BUGS and CONTRIBUTIONS 148 149The source code is located here: https://github.com/pplu/aws-sdk-perl 150 151Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues 152 153=cut 154 155