inspectorscan ************* Client ====== class inspectorscan.Client A low-level client representing Inspector Scan (inspector-scan) Amazon Inspector Scan is a vulnerability discovery service that scans a provided Software Bill of Materials (SBOM) for security vulnerabilities. import boto3 client = boto3.client('inspector-scan') These are the available methods: * can_paginate * close * get_paginator * get_waiter * scan_sbom inspectorscan / Client / get_paginator get_paginator ************* inspectorscan.Client.get_paginator(operation_name) Create a paginator for an operation. Parameters: **operation_name** (*string*) -- The operation name. This is the same name as the method name on the client. For example, if the method name is "create_foo", and you'd normally invoke the operation as "client.create_foo(**kwargs)", if the "create_foo" operation can be paginated, you can use the call "client.get_paginator("create_foo")". Raises: **OperationNotPageableError** -- Raised if the operation is not pageable. You can use the "client.can_paginate" method to check if an operation is pageable. Return type: "botocore.paginate.Paginator" Returns: A paginator object. inspectorscan / Client / scan_sbom scan_sbom ********* inspectorscan.Client.scan_sbom(**kwargs) Scans a provided CycloneDX 1.5 SBOM and reports on any vulnerabilities discovered in that SBOM. You can generate compatible SBOMs for your resources using the >>`<