NAME
Paws::IoT::AssociateTargetsWithJob - Arguments for method AssociateTargetsWithJob on Paws::IoT
DESCRIPTION
This class represents the parameters used for calling the method AssociateTargetsWithJob on the AWS IoT service. Use the attributes of this class as arguments to method AssociateTargetsWithJob.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to AssociateTargetsWithJob.
SYNOPSIS
my $iot = Paws->service('IoT');
my $AssociateTargetsWithJobResponse = $iot->AssociateTargetsWithJob(
JobId => 'MyJobId',
Targets => [
'MyTargetArn', ... # max: 2048
],
Comment => 'MyComment', # OPTIONAL
NamespaceId => 'MyNamespaceId', # OPTIONAL
);
# Results:
my $Description = $AssociateTargetsWithJobResponse->Description;
my $JobArn = $AssociateTargetsWithJobResponse->JobArn;
my $JobId = $AssociateTargetsWithJobResponse->JobId;
# Returns a L<Paws::IoT::AssociateTargetsWithJobResponse> object.
Values 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. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/iot/AssociateTargetsWithJob
ATTRIBUTES
Comment => Str
An optional comment string describing why the job was associated with the targets.
REQUIRED JobId => Str
The unique identifier you assigned to this job when it was created.
NamespaceId => Str
The namespace used to indicate that a job is a customer-managed job.
When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.
$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/
The namespaceId
feature is in public preview.
REQUIRED Targets => ArrayRef[Str|Undef]
A list of thing group ARNs that define the targets of the job.
SEE ALSO
This class forms part of Paws, documenting arguments for method AssociateTargetsWithJob in Paws::IoT
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues