—# Generated by default/object.tt
package
Paws::SecurityHub::ProcessDetails;
has
LaunchedAt
=> (
is
=>
'ro'
,
isa
=>
'Str'
);
has
Name
=> (
is
=>
'ro'
,
isa
=>
'Str'
);
has
ParentPid
=> (
is
=>
'ro'
,
isa
=>
'Int'
);
has
Path
=> (
is
=>
'ro'
,
isa
=>
'Str'
);
has
Pid
=> (
is
=>
'ro'
,
isa
=>
'Int'
);
has
TerminatedAt
=> (
is
=>
'ro'
,
isa
=>
'Str'
);
1;
### main pod documentation begin ###
=head1 NAME
Paws::SecurityHub::ProcessDetails
=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::SecurityHub::ProcessDetails object:
$service_obj->Method(Att1 => { LaunchedAt => $value, ..., TerminatedAt => $value });
=head3 Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::SecurityHub::ProcessDetails object:
$result = $service_obj->Method(...);
$result->Att1->LaunchedAt
=head1 DESCRIPTION
The details of process-related information about a finding.
=head1 ATTRIBUTES
=head2 LaunchedAt => Str
Indicates when the process was launched.
Uses the C<date-time> format specified in RFC 3339 section 5.6,
Internet Date/Time Format
(https://tools.ietf.org/html/rfc3339#section-5.6). The value cannot
contain spaces. For example, C<2020-03-22T13:22:13.933Z>.
=head2 Name => Str
The name of the process.
=head2 ParentPid => Int
The parent process ID.
=head2 Path => Str
The path to the process executable.
=head2 Pid => Int
The process ID.
=head2 TerminatedAt => Str
Indicates when the process was terminated.
Uses the C<date-time> format specified in RFC 3339 section 5.6,
Internet Date/Time Format
(https://tools.ietf.org/html/rfc3339#section-5.6). The value cannot
contain spaces. For example, C<2020-03-22T13:22:13.933Z>.
=head1 SEE ALSO
This class forms part of L<Paws>, describing an object used in L<Paws::SecurityHub>
=head1 BUGS and CONTRIBUTIONS
The source code is located here: L<https://github.com/pplu/aws-sdk-perl>
Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues>
=cut