![]() |
![]()
| ![]() |
![]()
NAMEPaws::IoTSiteWise::ListAccessPolicies - Arguments for method ListAccessPolicies on Paws::IoTSiteWise DESCRIPTIONThis class represents the parameters used for calling the method ListAccessPolicies on the AWS IoT SiteWise service. Use the attributes of this class as arguments to method ListAccessPolicies. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListAccessPolicies. SYNOPSISmy $iotsitewise = Paws->service('IoTSiteWise'); my $ListAccessPoliciesResponse = $iotsitewise->ListAccessPolicies( IamArn => 'MyARN', # OPTIONAL IdentityId => 'MyIdentityId', # OPTIONAL IdentityType => 'USER', # OPTIONAL MaxResults => 1, # OPTIONAL NextToken => 'MyNextToken', # OPTIONAL ResourceId => 'MyID', # OPTIONAL ResourceType => 'PORTAL', # OPTIONAL ); # Results: my $AccessPolicySummaries = $ListAccessPoliciesResponse->AccessPolicySummaries; my $NextToken = $ListAccessPoliciesResponse->NextToken; # Returns a L<Paws::IoTSiteWise::ListAccessPoliciesResponse> 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/iotsitewise/ListAccessPolicies> ATTRIBUTESIamArn => StrThe ARN of the IAM user. For more information, see IAM ARNs (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html) in the IAM User Guide. This parameter is required if you specify "IAM" for "identityType". IdentityId => StrThe ID of the identity. This parameter is required if you specify "USER" or "GROUP" for "identityType". IdentityType => StrThe type of identity (AWS SSO user, AWS SSO group, or IAM user). This parameter is required if you specify "identityId". Valid values are: "USER", "GROUP", "IAM" MaxResults => IntThe maximum number of results to be returned per paginated request. Default: 50 NextToken => StrThe token to be used for the next set of paginated results. ResourceId => StrThe ID of the resource. This parameter is required if you specify "resourceType". ResourceType => StrThe type of resource (portal or project). This parameter is required if you specify "resourceId". Valid values are: "PORTAL", "PROJECT" SEE ALSOThis class forms part of Paws, documenting arguments for method ListAccessPolicies in Paws::IoTSiteWise BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|