IoT
public struct IoT
Client object for interacting with AWS IoT service.
AWS IoT AWS IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the AWS cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices. The service endpoints that expose this API are listed in AWS IoT Core Endpoints and Quotas. You must use the endpoint for the region that has the resources you want to access. The service name used by AWS Signature Version 4 to sign the request is: execute-api. For more information about how AWS IoT works, see the Developer Guide. For information about how to use the credentials provider for AWS IoT, see Authorizing Direct Calls to AWS Services.
-
Undocumented
Declaration
Swift
public let client: AWSClient
-
Initialize the IoT client
Declaration
Swift
public init(accessKeyId: String? = nil, secretAccessKey: String? = nil, sessionToken: String? = nil, region: AWSSDKSwiftCore.Region? = nil, endpoint: String? = nil, middlewares: [AWSServiceMiddleware] = [], eventLoopGroupProvider: AWSClient.EventLoopGroupProvider = .useAWSClientShared)
Parameters
accessKeyId
Public access key provided by AWS
secretAccessKey
Private access key provided by AWS
sessionToken
Token provided by STS.AssumeRole() which allows access to another AWS account
region
Region of server you want to communicate with
endpoint
Custom endpoint URL to use instead of standard AWS servers
middlewares
Array of middlewares to apply to requests and responses
eventLoopGroupProvider
EventLoopGroup to use. Use
useAWSClientShared
if the client shall manage its own EventLoopGroup.
-
Accepts a pending certificate transfer. The default state of the certificate is INACTIVE. To check for pending certificate transfers, call ListCertificates to enumerate your certificates.
Declaration
Swift
@discardableResult public func acceptCertificateTransfer(_ input: AcceptCertificateTransferRequest) -> EventLoopFuture<Void>
-
Adds a thing to a billing group.
Declaration
Swift
public func addThingToBillingGroup(_ input: AddThingToBillingGroupRequest) -> EventLoopFuture<AddThingToBillingGroupResponse>
-
Adds a thing to a thing group.
Declaration
Swift
public func addThingToThingGroup(_ input: AddThingToThingGroupRequest) -> EventLoopFuture<AddThingToThingGroupResponse>
-
Associates a group with a continuous job. The following criteria must be met: The job must have been created with the targetSelection field set to “CONTINUOUS”. The job status must currently be “IN_PROGRESS”. The total number of targets associated with a job must not exceed 100.
Declaration
Swift
public func associateTargetsWithJob(_ input: AssociateTargetsWithJobRequest) -> EventLoopFuture<AssociateTargetsWithJobResponse>
-
Attaches a policy to the specified target.
Declaration
Swift
@discardableResult public func attachPolicy(_ input: AttachPolicyRequest) -> EventLoopFuture<Void>
-
Attaches the specified policy to the specified principal (certificate or other credential). Note: This API is deprecated. Please use AttachPolicy instead.
Declaration
Swift
@available(*, deprecated, message: "AttachPrincipalPolicy is deprecated.") @discardableResult public func attachPrincipalPolicy(_ input: AttachPrincipalPolicyRequest) -> EventLoopFuture<Void>
-
Associates a Device Defender security profile with a thing group or this account. Each thing group or account can have up to five security profiles associated with it.
Declaration
Swift
public func attachSecurityProfile(_ input: AttachSecurityProfileRequest) -> EventLoopFuture<AttachSecurityProfileResponse>
-
Attaches the specified principal to the specified thing. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.
Declaration
Swift
public func attachThingPrincipal(_ input: AttachThingPrincipalRequest) -> EventLoopFuture<AttachThingPrincipalResponse>
-
Cancels a mitigation action task that is in progress. If the task is not in progress, an InvalidRequestException occurs.
Declaration
Swift
public func cancelAuditMitigationActionsTask(_ input: CancelAuditMitigationActionsTaskRequest) -> EventLoopFuture<CancelAuditMitigationActionsTaskResponse>
-
Cancels an audit that is in progress. The audit can be either scheduled or on-demand. If the audit is not in progress, an “InvalidRequestException” occurs.
Declaration
Swift
public func cancelAuditTask(_ input: CancelAuditTaskRequest) -> EventLoopFuture<CancelAuditTaskResponse>
-
Cancels a pending transfer for the specified certificate. Note Only the transfer source account can use this operation to cancel a transfer. (Transfer destinations can use RejectCertificateTransfer instead.) After transfer, AWS IoT returns the certificate to the source account in the INACTIVE state. After the destination account has accepted the transfer, the transfer cannot be cancelled. After a certificate transfer is cancelled, the status of the certificate changes from PENDING_TRANSFER to INACTIVE.
Declaration
Swift
@discardableResult public func cancelCertificateTransfer(_ input: CancelCertificateTransferRequest) -> EventLoopFuture<Void>
-
Cancels a job.
Declaration
Swift
public func cancelJob(_ input: CancelJobRequest) -> EventLoopFuture<CancelJobResponse>
-
Cancels the execution of a job for a given thing.
Declaration
Swift
@discardableResult public func cancelJobExecution(_ input: CancelJobExecutionRequest) -> EventLoopFuture<Void>
-
Clears the default authorizer.
Declaration
Swift
public func clearDefaultAuthorizer(_ input: ClearDefaultAuthorizerRequest) -> EventLoopFuture<ClearDefaultAuthorizerResponse>
-
Confirms a topic rule destination. When you create a rule requiring a destination, AWS IoT sends a confirmation message to the endpoint or base address you specify. The message includes a token which you pass back when calling ConfirmTopicRuleDestination to confirm that you own or have access to the endpoint.
Declaration
Swift
public func confirmTopicRuleDestination(_ input: ConfirmTopicRuleDestinationRequest) -> EventLoopFuture<ConfirmTopicRuleDestinationResponse>
-
Creates a Device Defender audit suppression.
Declaration
Swift
public func createAuditSuppression(_ input: CreateAuditSuppressionRequest) -> EventLoopFuture<CreateAuditSuppressionResponse>
-
Creates an authorizer.
Declaration
Swift
public func createAuthorizer(_ input: CreateAuthorizerRequest) -> EventLoopFuture<CreateAuthorizerResponse>
-
Creates a billing group.
Declaration
Swift
public func createBillingGroup(_ input: CreateBillingGroupRequest) -> EventLoopFuture<CreateBillingGroupResponse>
-
Creates an X.509 certificate using the specified certificate signing request. Note: The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256 or NIST P-384 curves. Note: Reusing the same certificate signing request (CSR) results in a distinct certificate. You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. Assuming a set of CSRs are located inside of the directory my-csr-directory: On Linux and OS X, the command is: $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr –certificate-signing-request file://my-csr-directory/{} This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr AWS CLI command to create a certificate for the corresponding CSR. The aws iot create-certificate-from-csr part of the command can also be run in parallel to speed up the certificate creation process: $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr –certificate-signing-request file://my-csr-directory/{} On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is: > ls -Name my-csr-directory | %{aws iot create-certificate-from-csr –certificate-signing-request file://my-csr-directory/$_} On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is: > forfiles /p my-csr-directory /c “cmd /c aws iot create-certificate-from-csr –certificate-signing-request file://@path”
Declaration
Swift
public func createCertificateFromCsr(_ input: CreateCertificateFromCsrRequest) -> EventLoopFuture<CreateCertificateFromCsrResponse>
-
Create a dimension that you can use to limit the scope of a metric used in a security profile for AWS IoT Device Defender. For example, using a TOPIC_FILTER dimension, you can narrow down the scope of the metric only to MQTT topics whose name match the pattern specified in the dimension.
Declaration
Swift
public func createDimension(_ input: CreateDimensionRequest) -> EventLoopFuture<CreateDimensionResponse>
-
Creates a domain configuration. The domain configuration feature is in public preview and is subject to change.
Declaration
Swift
public func createDomainConfiguration(_ input: CreateDomainConfigurationRequest) -> EventLoopFuture<CreateDomainConfigurationResponse>
-
Creates a dynamic thing group.
Declaration
Swift
public func createDynamicThingGroup(_ input: CreateDynamicThingGroupRequest) -> EventLoopFuture<CreateDynamicThingGroupResponse>
-
Creates a job.
Declaration
Swift
public func createJob(_ input: CreateJobRequest) -> EventLoopFuture<CreateJobResponse>
-
Creates a 2048-bit RSA key pair and issues an X.509 certificate using the issued public key. You can also call CreateKeysAndCertificate over MQTT from a device, for more information, see Provisioning MQTT API. Note This is the only time AWS IoT issues the private key for this certificate, so it is important to keep it in a secure location.
Declaration
Swift
public func createKeysAndCertificate(_ input: CreateKeysAndCertificateRequest) -> EventLoopFuture<CreateKeysAndCertificateResponse>
-
Defines an action that can be applied to audit findings by using StartAuditMitigationActionsTask. Only certain types of mitigation actions can be applied to specific check names. For more information, see Mitigation actions. Each mitigation action can apply only one type of change.
Declaration
Swift
public func createMitigationAction(_ input: CreateMitigationActionRequest) -> EventLoopFuture<CreateMitigationActionResponse>
-
Creates an AWS IoT OTAUpdate on a target group of things or groups.
Declaration
Swift
public func createOTAUpdate(_ input: CreateOTAUpdateRequest) -> EventLoopFuture<CreateOTAUpdateResponse>
-
Creates an AWS IoT policy. The created policy is the default version for the policy. This operation creates a policy version with a version identifier of 1 and sets 1 as the policy’s default version.
Declaration
Swift
public func createPolicy(_ input: CreatePolicyRequest) -> EventLoopFuture<CreatePolicyResponse>
-
Creates a new version of the specified AWS IoT policy. To update a policy, create a new policy version. A managed policy can have up to five versions. If the policy has five versions, you must use DeletePolicyVersion to delete an existing version before you create a new one. Optionally, you can set the new version as the policy’s default version. The default version is the operative version (that is, the version that is in effect for the certificates to which the policy is attached).
Declaration
Swift
public func createPolicyVersion(_ input: CreatePolicyVersionRequest) -> EventLoopFuture<CreatePolicyVersionResponse>
-
Creates a provisioning claim.
Declaration
Swift
public func createProvisioningClaim(_ input: CreateProvisioningClaimRequest) -> EventLoopFuture<CreateProvisioningClaimResponse>
-
Creates a fleet provisioning template.
Declaration
Swift
public func createProvisioningTemplate(_ input: CreateProvisioningTemplateRequest) -> EventLoopFuture<CreateProvisioningTemplateResponse>
-
Creates a new version of a fleet provisioning template.
Declaration
Swift
public func createProvisioningTemplateVersion(_ input: CreateProvisioningTemplateVersionRequest) -> EventLoopFuture<CreateProvisioningTemplateVersionResponse>
-
Creates a role alias.
Declaration
Swift
public func createRoleAlias(_ input: CreateRoleAliasRequest) -> EventLoopFuture<CreateRoleAliasResponse>
-
Creates a scheduled audit that is run at a specified time interval.
Declaration
Swift
public func createScheduledAudit(_ input: CreateScheduledAuditRequest) -> EventLoopFuture<CreateScheduledAuditResponse>
-
Creates a Device Defender security profile.
Declaration
Swift
public func createSecurityProfile(_ input: CreateSecurityProfileRequest) -> EventLoopFuture<CreateSecurityProfileResponse>
-
Creates a stream for delivering one or more large files in chunks over MQTT. A stream transports data bytes in chunks or blocks packaged as MQTT messages from a source like S3. You can have one or more files associated with a stream.
Declaration
Swift
public func createStream(_ input: CreateStreamRequest) -> EventLoopFuture<CreateStreamResponse>
-
Creates a thing record in the registry. If this call is made multiple times using the same thing name and configuration, the call will succeed. If this call is made with the same thing name but different configuration a ResourceAlreadyExistsException is thrown. This is a control plane operation. See Authorization for information about authorizing control plane actions.
Declaration
Swift
public func createThing(_ input: CreateThingRequest) -> EventLoopFuture<CreateThingResponse>
-
Create a thing group. This is a control plane operation. See Authorization for information about authorizing control plane actions.
Declaration
Swift
public func createThingGroup(_ input: CreateThingGroupRequest) -> EventLoopFuture<CreateThingGroupResponse>
-
Creates a new thing type.
Declaration
Swift
public func createThingType(_ input: CreateThingTypeRequest) -> EventLoopFuture<CreateThingTypeResponse>
-
Creates a rule. Creating rules is an administrator-level action. Any user who has permission to create rules will be able to access data processed by the rule.
Declaration
Swift
@discardableResult public func createTopicRule(_ input: CreateTopicRuleRequest) -> EventLoopFuture<Void>
-
Creates a topic rule destination. The destination must be confirmed prior to use.
Declaration
Swift
public func createTopicRuleDestination(_ input: CreateTopicRuleDestinationRequest) -> EventLoopFuture<CreateTopicRuleDestinationResponse>
-
Restores the default settings for Device Defender audits for this account. Any configuration data you entered is deleted and all audit checks are reset to disabled.
Declaration
Swift
public func deleteAccountAuditConfiguration(_ input: DeleteAccountAuditConfigurationRequest) -> EventLoopFuture<DeleteAccountAuditConfigurationResponse>
-
Deletes a Device Defender audit suppression.
Declaration
Swift
public func deleteAuditSuppression(_ input: DeleteAuditSuppressionRequest) -> EventLoopFuture<DeleteAuditSuppressionResponse>
-
Deletes an authorizer.
Declaration
Swift
public func deleteAuthorizer(_ input: DeleteAuthorizerRequest) -> EventLoopFuture<DeleteAuthorizerResponse>
-
Deletes the billing group.
Declaration
Swift
public func deleteBillingGroup(_ input: DeleteBillingGroupRequest) -> EventLoopFuture<DeleteBillingGroupResponse>
-
Deletes a registered CA certificate.
Declaration
Swift
public func deleteCACertificate(_ input: DeleteCACertificateRequest) -> EventLoopFuture<DeleteCACertificateResponse>
-
Deletes the specified certificate. A certificate cannot be deleted if it has a policy or IoT thing attached to it or if its status is set to ACTIVE. To delete a certificate, first use the DetachPrincipalPolicy API to detach all policies. Next, use the UpdateCertificate API to set the certificate to the INACTIVE status.
Declaration
Swift
@discardableResult public func deleteCertificate(_ input: DeleteCertificateRequest) -> EventLoopFuture<Void>
-
Removes the specified dimension from your AWS account.
Declaration
Swift
public func deleteDimension(_ input: DeleteDimensionRequest) -> EventLoopFuture<DeleteDimensionResponse>
-
Deletes the specified domain configuration. The domain configuration feature is in public preview and is subject to change.
Declaration
Swift
public func deleteDomainConfiguration(_ input: DeleteDomainConfigurationRequest) -> EventLoopFuture<DeleteDomainConfigurationResponse>
-
Deletes a dynamic thing group.
Declaration
Swift
public func deleteDynamicThingGroup(_ input: DeleteDynamicThingGroupRequest) -> EventLoopFuture<DeleteDynamicThingGroupResponse>
-
Deletes a job and its related job executions. Deleting a job may take time, depending on the number of job executions created for the job and various other factors. While the job is being deleted, the status of the job will be shown as “DELETION_IN_PROGRESS”. Attempting to delete or cancel a job whose status is already “DELETION_IN_PROGRESS” will result in an error. Only 10 jobs may have status “DELETION_IN_PROGRESS” at the same time, or a LimitExceededException will occur.
Declaration
Swift
@discardableResult public func deleteJob(_ input: DeleteJobRequest) -> EventLoopFuture<Void>
-
Deletes a job execution.
Declaration
Swift
@discardableResult public func deleteJobExecution(_ input: DeleteJobExecutionRequest) -> EventLoopFuture<Void>
-
Deletes a defined mitigation action from your AWS account.
Declaration
Swift
public func deleteMitigationAction(_ input: DeleteMitigationActionRequest) -> EventLoopFuture<DeleteMitigationActionResponse>
-
Delete an OTA update.
Declaration
Swift
public func deleteOTAUpdate(_ input: DeleteOTAUpdateRequest) -> EventLoopFuture<DeleteOTAUpdateResponse>
-
Deletes the specified policy. A policy cannot be deleted if it has non-default versions or it is attached to any certificate. To delete a policy, use the DeletePolicyVersion API to delete all non-default versions of the policy; use the DetachPrincipalPolicy API to detach the policy from any certificate; and then use the DeletePolicy API to delete the policy. When a policy is deleted using DeletePolicy, its default version is deleted with it.
Declaration
Swift
@discardableResult public func deletePolicy(_ input: DeletePolicyRequest) -> EventLoopFuture<Void>
-
Deletes the specified version of the specified policy. You cannot delete the default version of a policy using this API. To delete the default version of a policy, use DeletePolicy. To find out which version of a policy is marked as the default version, use ListPolicyVersions.
Declaration
Swift
@discardableResult public func deletePolicyVersion(_ input: DeletePolicyVersionRequest) -> EventLoopFuture<Void>
-
Deletes a fleet provisioning template.
Declaration
Swift
public func deleteProvisioningTemplate(_ input: DeleteProvisioningTemplateRequest) -> EventLoopFuture<DeleteProvisioningTemplateResponse>
-
Deletes a fleet provisioning template version.
Declaration
Swift
public func deleteProvisioningTemplateVersion(_ input: DeleteProvisioningTemplateVersionRequest) -> EventLoopFuture<DeleteProvisioningTemplateVersionResponse>
-
Deletes a CA certificate registration code.
Declaration
Swift
public func deleteRegistrationCode(_ input: DeleteRegistrationCodeRequest) -> EventLoopFuture<DeleteRegistrationCodeResponse>
-
Deletes a role alias
Declaration
Swift
public func deleteRoleAlias(_ input: DeleteRoleAliasRequest) -> EventLoopFuture<DeleteRoleAliasResponse>
-
Deletes a scheduled audit.
Declaration
Swift
public func deleteScheduledAudit(_ input: DeleteScheduledAuditRequest) -> EventLoopFuture<DeleteScheduledAuditResponse>
-
Deletes a Device Defender security profile.
Declaration
Swift
public func deleteSecurityProfile(_ input: DeleteSecurityProfileRequest) -> EventLoopFuture<DeleteSecurityProfileResponse>
-
Deletes a stream.
Declaration
Swift
public func deleteStream(_ input: DeleteStreamRequest) -> EventLoopFuture<DeleteStreamResponse>
-
Deletes the specified thing. Returns successfully with no error if the deletion is successful or you specify a thing that doesn’t exist.
Declaration
Swift
public func deleteThing(_ input: DeleteThingRequest) -> EventLoopFuture<DeleteThingResponse>
-
Deletes a thing group.
Declaration
Swift
public func deleteThingGroup(_ input: DeleteThingGroupRequest) -> EventLoopFuture<DeleteThingGroupResponse>
-
Deletes the specified thing type. You cannot delete a thing type if it has things associated with it. To delete a thing type, first mark it as deprecated by calling DeprecateThingType, then remove any associated things by calling UpdateThing to change the thing type on any associated thing, and finally use DeleteThingType to delete the thing type.
Declaration
Swift
public func deleteThingType(_ input: DeleteThingTypeRequest) -> EventLoopFuture<DeleteThingTypeResponse>
-
Deletes the rule.
Declaration
Swift
@discardableResult public func deleteTopicRule(_ input: DeleteTopicRuleRequest) -> EventLoopFuture<Void>
-
Deletes a topic rule destination.
Declaration
Swift
public func deleteTopicRuleDestination(_ input: DeleteTopicRuleDestinationRequest) -> EventLoopFuture<DeleteTopicRuleDestinationResponse>
-
Deletes a logging level.
Declaration
Swift
@discardableResult public func deleteV2LoggingLevel(_ input: DeleteV2LoggingLevelRequest) -> EventLoopFuture<Void>
-
Deprecates a thing type. You can not associate new things with deprecated thing type.
Declaration
Swift
public func deprecateThingType(_ input: DeprecateThingTypeRequest) -> EventLoopFuture<DeprecateThingTypeResponse>
-
Gets information about the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.
Declaration
Swift
public func describeAccountAuditConfiguration(_ input: DescribeAccountAuditConfigurationRequest) -> EventLoopFuture<DescribeAccountAuditConfigurationResponse>
-
Gets information about a single audit finding. Properties include the reason for noncompliance, the severity of the issue, and when the audit that returned the finding was started.
Declaration
Swift
public func describeAuditFinding(_ input: DescribeAuditFindingRequest) -> EventLoopFuture<DescribeAuditFindingResponse>
-
Gets information about an audit mitigation task that is used to apply mitigation actions to a set of audit findings. Properties include the actions being applied, the audit checks to which they’re being applied, the task status, and aggregated task statistics.
Declaration
Swift
public func describeAuditMitigationActionsTask(_ input: DescribeAuditMitigationActionsTaskRequest) -> EventLoopFuture<DescribeAuditMitigationActionsTaskResponse>
-
Gets information about a Device Defender audit suppression.
Declaration
Swift
public func describeAuditSuppression(_ input: DescribeAuditSuppressionRequest) -> EventLoopFuture<DescribeAuditSuppressionResponse>
-
Gets information about a Device Defender audit.
Declaration
Swift
public func describeAuditTask(_ input: DescribeAuditTaskRequest) -> EventLoopFuture<DescribeAuditTaskResponse>
-
Describes an authorizer.
Declaration
Swift
public func describeAuthorizer(_ input: DescribeAuthorizerRequest) -> EventLoopFuture<DescribeAuthorizerResponse>
-
Returns information about a billing group.
Declaration
Swift
public func describeBillingGroup(_ input: DescribeBillingGroupRequest) -> EventLoopFuture<DescribeBillingGroupResponse>
-
Describes a registered CA certificate.
Declaration
Swift
public func describeCACertificate(_ input: DescribeCACertificateRequest) -> EventLoopFuture<DescribeCACertificateResponse>
-
Gets information about the specified certificate.
Declaration
Swift
public func describeCertificate(_ input: DescribeCertificateRequest) -> EventLoopFuture<DescribeCertificateResponse>
-
Describes the default authorizer.
Declaration
Swift
public func describeDefaultAuthorizer(_ input: DescribeDefaultAuthorizerRequest) -> EventLoopFuture<DescribeDefaultAuthorizerResponse>
-
Provides details about a dimension that is defined in your AWS account.
Declaration
Swift
public func describeDimension(_ input: DescribeDimensionRequest) -> EventLoopFuture<DescribeDimensionResponse>
-
Gets summary information about a domain configuration. The domain configuration feature is in public preview and is subject to change.
Declaration
Swift
public func describeDomainConfiguration(_ input: DescribeDomainConfigurationRequest) -> EventLoopFuture<DescribeDomainConfigurationResponse>
-
Returns a unique endpoint specific to the AWS account making the call.
Declaration
Swift
public func describeEndpoint(_ input: DescribeEndpointRequest) -> EventLoopFuture<DescribeEndpointResponse>
-
Describes event configurations.
Declaration
Swift
public func describeEventConfigurations(_ input: DescribeEventConfigurationsRequest) -> EventLoopFuture<DescribeEventConfigurationsResponse>
-
Describes a search index.
Declaration
Swift
public func describeIndex(_ input: DescribeIndexRequest) -> EventLoopFuture<DescribeIndexResponse>
-
Describes a job.
Declaration
Swift
public func describeJob(_ input: DescribeJobRequest) -> EventLoopFuture<DescribeJobResponse>
-
Describes a job execution.
Declaration
Swift
public func describeJobExecution(_ input: DescribeJobExecutionRequest) -> EventLoopFuture<DescribeJobExecutionResponse>
-
Gets information about a mitigation action.
Declaration
Swift
public func describeMitigationAction(_ input: DescribeMitigationActionRequest) -> EventLoopFuture<DescribeMitigationActionResponse>
-
Returns information about a fleet provisioning template.
Declaration
Swift
public func describeProvisioningTemplate(_ input: DescribeProvisioningTemplateRequest) -> EventLoopFuture<DescribeProvisioningTemplateResponse>
-
Returns information about a fleet provisioning template version.
Declaration
Swift
public func describeProvisioningTemplateVersion(_ input: DescribeProvisioningTemplateVersionRequest) -> EventLoopFuture<DescribeProvisioningTemplateVersionResponse>
-
Describes a role alias.
Declaration
Swift
public func describeRoleAlias(_ input: DescribeRoleAliasRequest) -> EventLoopFuture<DescribeRoleAliasResponse>
-
Gets information about a scheduled audit.
Declaration
Swift
public func describeScheduledAudit(_ input: DescribeScheduledAuditRequest) -> EventLoopFuture<DescribeScheduledAuditResponse>
-
Gets information about a Device Defender security profile.
Declaration
Swift
public func describeSecurityProfile(_ input: DescribeSecurityProfileRequest) -> EventLoopFuture<DescribeSecurityProfileResponse>
-
Gets information about a stream.
Declaration
Swift
public func describeStream(_ input: DescribeStreamRequest) -> EventLoopFuture<DescribeStreamResponse>
-
Gets information about the specified thing.
Declaration
Swift
public func describeThing(_ input: DescribeThingRequest) -> EventLoopFuture<DescribeThingResponse>
-
Describe a thing group.
Declaration
Swift
public func describeThingGroup(_ input: DescribeThingGroupRequest) -> EventLoopFuture<DescribeThingGroupResponse>
-
Describes a bulk thing provisioning task.
Declaration
Swift
public func describeThingRegistrationTask(_ input: DescribeThingRegistrationTaskRequest) -> EventLoopFuture<DescribeThingRegistrationTaskResponse>
-
Gets information about the specified thing type.
Declaration
Swift
public func describeThingType(_ input: DescribeThingTypeRequest) -> EventLoopFuture<DescribeThingTypeResponse>
-
Detaches a policy from the specified target.
Declaration
Swift
@discardableResult public func detachPolicy(_ input: DetachPolicyRequest) -> EventLoopFuture<Void>
-
Removes the specified policy from the specified certificate. Note: This API is deprecated. Please use DetachPolicy instead.
Declaration
Swift
@available(*, deprecated, message: "DetachPrincipalPolicy is deprecated.") @discardableResult public func detachPrincipalPolicy(_ input: DetachPrincipalPolicyRequest) -> EventLoopFuture<Void>
-
Disassociates a Device Defender security profile from a thing group or from this account.
Declaration
Swift
public func detachSecurityProfile(_ input: DetachSecurityProfileRequest) -> EventLoopFuture<DetachSecurityProfileResponse>
-
Detaches the specified principal from the specified thing. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities. This call is asynchronous. It might take several seconds for the detachment to propagate.
Declaration
Swift
public func detachThingPrincipal(_ input: DetachThingPrincipalRequest) -> EventLoopFuture<DetachThingPrincipalResponse>
-
Disables the rule.
Declaration
Swift
@discardableResult public func disableTopicRule(_ input: DisableTopicRuleRequest) -> EventLoopFuture<Void>
-
Enables the rule.
Declaration
Swift
@discardableResult public func enableTopicRule(_ input: EnableTopicRuleRequest) -> EventLoopFuture<Void>
-
Returns the approximate count of unique values that match the query.
Declaration
Swift
public func getCardinality(_ input: GetCardinalityRequest) -> EventLoopFuture<GetCardinalityResponse>
-
Gets a list of the policies that have an effect on the authorization behavior of the specified device when it connects to the AWS IoT device gateway.
Declaration
Swift
public func getEffectivePolicies(_ input: GetEffectivePoliciesRequest) -> EventLoopFuture<GetEffectivePoliciesResponse>
-
Gets the indexing configuration.
Declaration
Swift
public func getIndexingConfiguration(_ input: GetIndexingConfigurationRequest) -> EventLoopFuture<GetIndexingConfigurationResponse>
-
Gets a job document.
Declaration
Swift
public func getJobDocument(_ input: GetJobDocumentRequest) -> EventLoopFuture<GetJobDocumentResponse>
-
Gets the logging options. NOTE: use of this command is not recommended. Use GetV2LoggingOptions instead.
Declaration
Swift
public func getLoggingOptions(_ input: GetLoggingOptionsRequest) -> EventLoopFuture<GetLoggingOptionsResponse>
-
Gets an OTA update.
Declaration
Swift
public func getOTAUpdate(_ input: GetOTAUpdateRequest) -> EventLoopFuture<GetOTAUpdateResponse>
-
Groups the aggregated values that match the query into percentile groupings. The default percentile groupings are: 1,5,25,50,75,95,99, although you can specify your own when you call GetPercentiles. This function returns a value for each percentile group specified (or the default percentile groupings). The percentile group “1” contains the aggregated field value that occurs in approximately one percent of the values that match the query. The percentile group “5” contains the aggregated field value that occurs in approximately five percent of the values that match the query, and so on. The result is an approximation, the more values that match the query, the more accurate the percentile values.
Declaration
Swift
public func getPercentiles(_ input: GetPercentilesRequest) -> EventLoopFuture<GetPercentilesResponse>
-
Gets information about the specified policy with the policy document of the default version.
Declaration
Swift
public func getPolicy(_ input: GetPolicyRequest) -> EventLoopFuture<GetPolicyResponse>
-
Gets information about the specified policy version.
Declaration
Swift
public func getPolicyVersion(_ input: GetPolicyVersionRequest) -> EventLoopFuture<GetPolicyVersionResponse>
-
Gets a registration code used to register a CA certificate with AWS IoT.
Declaration
Swift
public func getRegistrationCode(_ input: GetRegistrationCodeRequest) -> EventLoopFuture<GetRegistrationCodeResponse>
-
Returns the count, average, sum, minimum, maximum, sum of squares, variance, and standard deviation for the specified aggregated field. If the aggregation field is of type String, only the count statistic is returned.
Declaration
Swift
public func getStatistics(_ input: GetStatisticsRequest) -> EventLoopFuture<GetStatisticsResponse>
-
Gets information about the rule.
Declaration
Swift
public func getTopicRule(_ input: GetTopicRuleRequest) -> EventLoopFuture<GetTopicRuleResponse>
-
Gets information about a topic rule destination.
Declaration
Swift
public func getTopicRuleDestination(_ input: GetTopicRuleDestinationRequest) -> EventLoopFuture<GetTopicRuleDestinationResponse>
-
Gets the fine grained logging options.
Declaration
Swift
public func getV2LoggingOptions(_ input: GetV2LoggingOptionsRequest) -> EventLoopFuture<GetV2LoggingOptionsResponse>
-
Lists the active violations for a given Device Defender security profile.
Declaration
Swift
public func listActiveViolations(_ input: ListActiveViolationsRequest) -> EventLoopFuture<ListActiveViolationsResponse>
-
Lists the policies attached to the specified thing group.
Declaration
Swift
public func listAttachedPolicies(_ input: ListAttachedPoliciesRequest) -> EventLoopFuture<ListAttachedPoliciesResponse>
-
Lists the findings (results) of a Device Defender audit or of the audits performed during a specified time period. (Findings are retained for 180 days.)
Declaration
Swift
public func listAuditFindings(_ input: ListAuditFindingsRequest) -> EventLoopFuture<ListAuditFindingsResponse>
-
Gets the status of audit mitigation action tasks that were executed.
Declaration
Swift
public func listAuditMitigationActionsExecutions(_ input: ListAuditMitigationActionsExecutionsRequest) -> EventLoopFuture<ListAuditMitigationActionsExecutionsResponse>
-
Gets a list of audit mitigation action tasks that match the specified filters.
Declaration
Swift
public func listAuditMitigationActionsTasks(_ input: ListAuditMitigationActionsTasksRequest) -> EventLoopFuture<ListAuditMitigationActionsTasksResponse>
-
Lists your Device Defender audit listings.
Declaration
Swift
public func listAuditSuppressions(_ input: ListAuditSuppressionsRequest) -> EventLoopFuture<ListAuditSuppressionsResponse>
-
Lists the Device Defender audits that have been performed during a given time period.
Declaration
Swift
public func listAuditTasks(_ input: ListAuditTasksRequest) -> EventLoopFuture<ListAuditTasksResponse>
-
Lists the authorizers registered in your account.
Declaration
Swift
public func listAuthorizers(_ input: ListAuthorizersRequest) -> EventLoopFuture<ListAuthorizersResponse>
-
Lists the billing groups you have created.
Declaration
Swift
public func listBillingGroups(_ input: ListBillingGroupsRequest) -> EventLoopFuture<ListBillingGroupsResponse>
-
Lists the CA certificates registered for your AWS account. The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.
Declaration
Swift
public func listCACertificates(_ input: ListCACertificatesRequest) -> EventLoopFuture<ListCACertificatesResponse>
-
Lists the certificates registered in your AWS account. The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.
Declaration
Swift
public func listCertificates(_ input: ListCertificatesRequest) -> EventLoopFuture<ListCertificatesResponse>
-
List the device certificates signed by the specified CA certificate.
Declaration
Swift
public func listCertificatesByCA(_ input: ListCertificatesByCARequest) -> EventLoopFuture<ListCertificatesByCAResponse>
-
List the set of dimensions that are defined for your AWS account.
Declaration
Swift
public func listDimensions(_ input: ListDimensionsRequest) -> EventLoopFuture<ListDimensionsResponse>
-
Gets a list of domain configurations for the user. This list is sorted alphabetically by domain configuration name. The domain configuration feature is in public preview and is subject to change.
Declaration
Swift
public func listDomainConfigurations(_ input: ListDomainConfigurationsRequest) -> EventLoopFuture<ListDomainConfigurationsResponse>
-
Lists the search indices.
Declaration
Swift
public func listIndices(_ input: ListIndicesRequest) -> EventLoopFuture<ListIndicesResponse>
-
Lists the job executions for a job.
Declaration
Swift
public func listJobExecutionsForJob(_ input: ListJobExecutionsForJobRequest) -> EventLoopFuture<ListJobExecutionsForJobResponse>
-
Lists the job executions for the specified thing.
Declaration
Swift
public func listJobExecutionsForThing(_ input: ListJobExecutionsForThingRequest) -> EventLoopFuture<ListJobExecutionsForThingResponse>
-
Lists jobs.
Declaration
Swift
public func listJobs(_ input: ListJobsRequest) -> EventLoopFuture<ListJobsResponse>
-
Gets a list of all mitigation actions that match the specified filter criteria.
Declaration
Swift
public func listMitigationActions(_ input: ListMitigationActionsRequest) -> EventLoopFuture<ListMitigationActionsResponse>
-
Lists OTA updates.
Declaration
Swift
public func listOTAUpdates(_ input: ListOTAUpdatesRequest) -> EventLoopFuture<ListOTAUpdatesResponse>
-
Lists certificates that are being transferred but not yet accepted.
Declaration
Swift
public func listOutgoingCertificates(_ input: ListOutgoingCertificatesRequest) -> EventLoopFuture<ListOutgoingCertificatesResponse>
-
Lists your policies.
Declaration
Swift
public func listPolicies(_ input: ListPoliciesRequest) -> EventLoopFuture<ListPoliciesResponse>
-
Lists the principals associated with the specified policy. Note: This API is deprecated. Please use ListTargetsForPolicy instead.
Declaration
Swift
@available(*, deprecated, message: "ListPolicyPrincipals is deprecated.") public func listPolicyPrincipals(_ input: ListPolicyPrincipalsRequest) -> EventLoopFuture<ListPolicyPrincipalsResponse>
-
Lists the versions of the specified policy and identifies the default version.
Declaration
Swift
public func listPolicyVersions(_ input: ListPolicyVersionsRequest) -> EventLoopFuture<ListPolicyVersionsResponse>
-
Lists the policies attached to the specified principal. If you use an Cognito identity, the ID must be in AmazonCognito Identity format. Note: This API is deprecated. Please use ListAttachedPolicies instead.
Declaration
Swift
@available(*, deprecated, message: "ListPrincipalPolicies is deprecated.") public func listPrincipalPolicies(_ input: ListPrincipalPoliciesRequest) -> EventLoopFuture<ListPrincipalPoliciesResponse>
-
Lists the things associated with the specified principal. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.
Declaration
Swift
public func listPrincipalThings(_ input: ListPrincipalThingsRequest) -> EventLoopFuture<ListPrincipalThingsResponse>
-
A list of fleet provisioning template versions.
Declaration
Swift
public func listProvisioningTemplateVersions(_ input: ListProvisioningTemplateVersionsRequest) -> EventLoopFuture<ListProvisioningTemplateVersionsResponse>
-
Lists the fleet provisioning templates in your AWS account.
Declaration
Swift
public func listProvisioningTemplates(_ input: ListProvisioningTemplatesRequest) -> EventLoopFuture<ListProvisioningTemplatesResponse>
-
Lists the role aliases registered in your account.
Declaration
Swift
public func listRoleAliases(_ input: ListRoleAliasesRequest) -> EventLoopFuture<ListRoleAliasesResponse>
-
Lists all of your scheduled audits.
Declaration
Swift
public func listScheduledAudits(_ input: ListScheduledAuditsRequest) -> EventLoopFuture<ListScheduledAuditsResponse>
-
Lists the Device Defender security profiles you have created. You can use filters to list only those security profiles associated with a thing group or only those associated with your account.
Declaration
Swift
public func listSecurityProfiles(_ input: ListSecurityProfilesRequest) -> EventLoopFuture<ListSecurityProfilesResponse>
-
Lists the Device Defender security profiles attached to a target (thing group).
Declaration
Swift
public func listSecurityProfilesForTarget(_ input: ListSecurityProfilesForTargetRequest) -> EventLoopFuture<ListSecurityProfilesForTargetResponse>
-
Lists all of the streams in your AWS account.
Declaration
Swift
public func listStreams(_ input: ListStreamsRequest) -> EventLoopFuture<ListStreamsResponse>
-
Lists the tags (metadata) you have assigned to the resource.
Declaration
Swift
public func listTagsForResource(_ input: ListTagsForResourceRequest) -> EventLoopFuture<ListTagsForResourceResponse>
-
List targets for the specified policy.
Declaration
Swift
public func listTargetsForPolicy(_ input: ListTargetsForPolicyRequest) -> EventLoopFuture<ListTargetsForPolicyResponse>
-
Lists the targets (thing groups) associated with a given Device Defender security profile.
Declaration
Swift
public func listTargetsForSecurityProfile(_ input: ListTargetsForSecurityProfileRequest) -> EventLoopFuture<ListTargetsForSecurityProfileResponse>
-
List the thing groups in your account.
Declaration
Swift
public func listThingGroups(_ input: ListThingGroupsRequest) -> EventLoopFuture<ListThingGroupsResponse>
-
List the thing groups to which the specified thing belongs.
Declaration
Swift
public func listThingGroupsForThing(_ input: ListThingGroupsForThingRequest) -> EventLoopFuture<ListThingGroupsForThingResponse>
-
Lists the principals associated with the specified thing. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.
Declaration
Swift
public func listThingPrincipals(_ input: ListThingPrincipalsRequest) -> EventLoopFuture<ListThingPrincipalsResponse>
-
Information about the thing registration tasks.
Declaration
Swift
public func listThingRegistrationTaskReports(_ input: ListThingRegistrationTaskReportsRequest) -> EventLoopFuture<ListThingRegistrationTaskReportsResponse>
-
List bulk thing provisioning tasks.
Declaration
Swift
public func listThingRegistrationTasks(_ input: ListThingRegistrationTasksRequest) -> EventLoopFuture<ListThingRegistrationTasksResponse>
-
Lists the existing thing types.
Declaration
Swift
public func listThingTypes(_ input: ListThingTypesRequest) -> EventLoopFuture<ListThingTypesResponse>
-
Lists your things. Use the attributeName and attributeValue parameters to filter your things. For example, calling ListThings with attributeName=Color and attributeValue=Red retrieves all things in the registry that contain an attribute Color with the value Red. You will not be charged for calling this API if an Access denied error is returned. You will also not be charged if no attributes or pagination token was provided in request and no pagination token and no results were returned.
Declaration
Swift
public func listThings(_ input: ListThingsRequest) -> EventLoopFuture<ListThingsResponse>
-
Lists the things you have added to the given billing group.
Declaration
Swift
public func listThingsInBillingGroup(_ input: ListThingsInBillingGroupRequest) -> EventLoopFuture<ListThingsInBillingGroupResponse>
-
Lists the things in the specified group.
Declaration
Swift
public func listThingsInThingGroup(_ input: ListThingsInThingGroupRequest) -> EventLoopFuture<ListThingsInThingGroupResponse>
-
Lists all the topic rule destinations in your AWS account.
Declaration
Swift
public func listTopicRuleDestinations(_ input: ListTopicRuleDestinationsRequest) -> EventLoopFuture<ListTopicRuleDestinationsResponse>
-
Lists the rules for the specific topic.
Declaration
Swift
public func listTopicRules(_ input: ListTopicRulesRequest) -> EventLoopFuture<ListTopicRulesResponse>
-
Lists logging levels.
Declaration
Swift
public func listV2LoggingLevels(_ input: ListV2LoggingLevelsRequest) -> EventLoopFuture<ListV2LoggingLevelsResponse>
-
Lists the Device Defender security profile violations discovered during the given time period. You can use filters to limit the results to those alerts issued for a particular security profile, behavior, or thing (device).
Declaration
Swift
public func listViolationEvents(_ input: ListViolationEventsRequest) -> EventLoopFuture<ListViolationEventsResponse>
-
Registers a CA certificate with AWS IoT. This CA certificate can then be used to sign device certificates, which can be then registered with AWS IoT. You can register up to 10 CA certificates per AWS account that have the same subject field. This enables you to have up to 10 certificate authorities sign your device certificates. If you have more than one CA certificate registered, make sure you pass the CA certificate when you register your device certificates with the RegisterCertificate API.
Declaration
Swift
public func registerCACertificate(_ input: RegisterCACertificateRequest) -> EventLoopFuture<RegisterCACertificateResponse>
-
Registers a device certificate with AWS IoT. If you have more than one CA certificate that has the same subject field, you must specify the CA certificate that was used to sign the device certificate being registered.
Declaration
Swift
public func registerCertificate(_ input: RegisterCertificateRequest) -> EventLoopFuture<RegisterCertificateResponse>
-
Register a certificate that does not have a certificate authority (CA).
Declaration
Swift
public func registerCertificateWithoutCA(_ input: RegisterCertificateWithoutCARequest) -> EventLoopFuture<RegisterCertificateWithoutCAResponse>
-
Provisions a thing in the device registry. RegisterThing calls other AWS IoT control plane APIs. These calls might exceed your account level AWS IoT Throttling Limits and cause throttle errors. Please contact AWS Customer Support to raise your throttling limits if necessary.
Declaration
Swift
public func registerThing(_ input: RegisterThingRequest) -> EventLoopFuture<RegisterThingResponse>
-
Rejects a pending certificate transfer. After AWS IoT rejects a certificate transfer, the certificate status changes from PENDING_TRANSFER to INACTIVE. To check for pending certificate transfers, call ListCertificates to enumerate your certificates. This operation can only be called by the transfer destination. After it is called, the certificate will be returned to the source’s account in the INACTIVE state.
Declaration
Swift
@discardableResult public func rejectCertificateTransfer(_ input: RejectCertificateTransferRequest) -> EventLoopFuture<Void>
-
Removes the given thing from the billing group.
Declaration
Swift
public func removeThingFromBillingGroup(_ input: RemoveThingFromBillingGroupRequest) -> EventLoopFuture<RemoveThingFromBillingGroupResponse>
-
Remove the specified thing from the specified group. You must specify either a thingGroupArn or a thingGroupName to identify the thing group and either a thingArn or a thingName to identify the thing to remove from the thing group.
Declaration
Swift
public func removeThingFromThingGroup(_ input: RemoveThingFromThingGroupRequest) -> EventLoopFuture<RemoveThingFromThingGroupResponse>
-
Replaces the rule. You must specify all parameters for the new rule. Creating rules is an administrator-level action. Any user who has permission to create rules will be able to access data processed by the rule.
Declaration
Swift
@discardableResult public func replaceTopicRule(_ input: ReplaceTopicRuleRequest) -> EventLoopFuture<Void>
-
The query search index.
Declaration
Swift
public func searchIndex(_ input: SearchIndexRequest) -> EventLoopFuture<SearchIndexResponse>
-
Sets the default authorizer. This will be used if a websocket connection is made without specifying an authorizer.
Declaration
Swift
public func setDefaultAuthorizer(_ input: SetDefaultAuthorizerRequest) -> EventLoopFuture<SetDefaultAuthorizerResponse>
-
Sets the specified version of the specified policy as the policy’s default (operative) version. This action affects all certificates to which the policy is attached. To list the principals the policy is attached to, use the ListPrincipalPolicy API.
Declaration
Swift
@discardableResult public func setDefaultPolicyVersion(_ input: SetDefaultPolicyVersionRequest) -> EventLoopFuture<Void>
-
Sets the logging options. NOTE: use of this command is not recommended. Use SetV2LoggingOptions instead.
Declaration
Swift
@discardableResult public func setLoggingOptions(_ input: SetLoggingOptionsRequest) -> EventLoopFuture<Void>
-
Sets the logging level.
Declaration
Swift
@discardableResult public func setV2LoggingLevel(_ input: SetV2LoggingLevelRequest) -> EventLoopFuture<Void>
-
Sets the logging options for the V2 logging service.
Declaration
Swift
@discardableResult public func setV2LoggingOptions(_ input: SetV2LoggingOptionsRequest) -> EventLoopFuture<Void>
-
Starts a task that applies a set of mitigation actions to the specified target.
Declaration
Swift
public func startAuditMitigationActionsTask(_ input: StartAuditMitigationActionsTaskRequest) -> EventLoopFuture<StartAuditMitigationActionsTaskResponse>
-
Starts an on-demand Device Defender audit.
Declaration
Swift
public func startOnDemandAuditTask(_ input: StartOnDemandAuditTaskRequest) -> EventLoopFuture<StartOnDemandAuditTaskResponse>
-
Creates a bulk thing provisioning task.
Declaration
Swift
public func startThingRegistrationTask(_ input: StartThingRegistrationTaskRequest) -> EventLoopFuture<StartThingRegistrationTaskResponse>
-
Cancels a bulk thing provisioning task.
Declaration
Swift
public func stopThingRegistrationTask(_ input: StopThingRegistrationTaskRequest) -> EventLoopFuture<StopThingRegistrationTaskResponse>
-
Adds to or modifies the tags of the given resource. Tags are metadata which can be used to manage a resource.
Declaration
Swift
public func tagResource(_ input: TagResourceRequest) -> EventLoopFuture<TagResourceResponse>
-
Tests if a specified principal is authorized to perform an AWS IoT action on a specified resource. Use this to test and debug the authorization behavior of devices that connect to the AWS IoT device gateway.
Declaration
Swift
public func testAuthorization(_ input: TestAuthorizationRequest) -> EventLoopFuture<TestAuthorizationResponse>
-
Tests a custom authorization behavior by invoking a specified custom authorizer. Use this to test and debug the custom authorization behavior of devices that connect to the AWS IoT device gateway.
Declaration
Swift
public func testInvokeAuthorizer(_ input: TestInvokeAuthorizerRequest) -> EventLoopFuture<TestInvokeAuthorizerResponse>
-
Transfers the specified certificate to the specified AWS account. You can cancel the transfer until it is acknowledged by the recipient. No notification is sent to the transfer destination’s account. It is up to the caller to notify the transfer target. The certificate being transferred must not be in the ACTIVE state. You can use the UpdateCertificate API to deactivate it. The certificate must not have any policies attached to it. You can use the DetachPrincipalPolicy API to detach them.
Declaration
Swift
public func transferCertificate(_ input: TransferCertificateRequest) -> EventLoopFuture<TransferCertificateResponse>
-
Removes the given tags (metadata) from the resource.
Declaration
Swift
public func untagResource(_ input: UntagResourceRequest) -> EventLoopFuture<UntagResourceResponse>
-
Configures or reconfigures the Device Defender audit settings for this account. Settings include how audit notifications are sent and which audit checks are enabled or disabled.
Declaration
Swift
public func updateAccountAuditConfiguration(_ input: UpdateAccountAuditConfigurationRequest) -> EventLoopFuture<UpdateAccountAuditConfigurationResponse>
-
Updates a Device Defender audit suppression.
Declaration
Swift
public func updateAuditSuppression(_ input: UpdateAuditSuppressionRequest) -> EventLoopFuture<UpdateAuditSuppressionResponse>
-
Updates an authorizer.
Declaration
Swift
public func updateAuthorizer(_ input: UpdateAuthorizerRequest) -> EventLoopFuture<UpdateAuthorizerResponse>
-
Updates information about the billing group.
Declaration
Swift
public func updateBillingGroup(_ input: UpdateBillingGroupRequest) -> EventLoopFuture<UpdateBillingGroupResponse>
-
Updates a registered CA certificate.
Declaration
Swift
@discardableResult public func updateCACertificate(_ input: UpdateCACertificateRequest) -> EventLoopFuture<Void>
-
Updates the status of the specified certificate. This operation is idempotent. Certificates must be in the ACTIVE state to authenticate devices that use a certificate to connect to AWS IoT. Within a few minutes of updating a certificate from the ACTIVE state to any other state, AWS IoT disconnects all devices that used that certificate to connect. Devices cannot use a certificate that is not in the ACTIVE state to reconnect.
Declaration
Swift
@discardableResult public func updateCertificate(_ input: UpdateCertificateRequest) -> EventLoopFuture<Void>
-
Updates the definition for a dimension. You cannot change the type of a dimension after it is created (you can delete it and re-create it).
Declaration
Swift
public func updateDimension(_ input: UpdateDimensionRequest) -> EventLoopFuture<UpdateDimensionResponse>
-
Updates values stored in the domain configuration. Domain configurations for default endpoints can’t be updated. The domain configuration feature is in public preview and is subject to change.
Declaration
Swift
public func updateDomainConfiguration(_ input: UpdateDomainConfigurationRequest) -> EventLoopFuture<UpdateDomainConfigurationResponse>
-
Updates a dynamic thing group.
Declaration
Swift
public func updateDynamicThingGroup(_ input: UpdateDynamicThingGroupRequest) -> EventLoopFuture<UpdateDynamicThingGroupResponse>
-
Updates the event configurations.
Declaration
Swift
public func updateEventConfigurations(_ input: UpdateEventConfigurationsRequest) -> EventLoopFuture<UpdateEventConfigurationsResponse>
-
Updates the search configuration.
Declaration
Swift
public func updateIndexingConfiguration(_ input: UpdateIndexingConfigurationRequest) -> EventLoopFuture<UpdateIndexingConfigurationResponse>
-
Updates supported fields of the specified job.
Declaration
Swift
@discardableResult public func updateJob(_ input: UpdateJobRequest) -> EventLoopFuture<Void>
-
Updates the definition for the specified mitigation action.
Declaration
Swift
public func updateMitigationAction(_ input: UpdateMitigationActionRequest) -> EventLoopFuture<UpdateMitigationActionResponse>
-
Updates a fleet provisioning template.
Declaration
Swift
public func updateProvisioningTemplate(_ input: UpdateProvisioningTemplateRequest) -> EventLoopFuture<UpdateProvisioningTemplateResponse>
-
Updates a role alias.
Declaration
Swift
public func updateRoleAlias(_ input: UpdateRoleAliasRequest) -> EventLoopFuture<UpdateRoleAliasResponse>
-
Updates a scheduled audit, including which checks are performed and how often the audit takes place.
Declaration
Swift
public func updateScheduledAudit(_ input: UpdateScheduledAuditRequest) -> EventLoopFuture<UpdateScheduledAuditResponse>
-
Updates a Device Defender security profile.
Declaration
Swift
public func updateSecurityProfile(_ input: UpdateSecurityProfileRequest) -> EventLoopFuture<UpdateSecurityProfileResponse>
-
Updates an existing stream. The stream version will be incremented by one.
Declaration
Swift
public func updateStream(_ input: UpdateStreamRequest) -> EventLoopFuture<UpdateStreamResponse>
-
Updates the data for a thing.
Declaration
Swift
public func updateThing(_ input: UpdateThingRequest) -> EventLoopFuture<UpdateThingResponse>
-
Update a thing group.
Declaration
Swift
public func updateThingGroup(_ input: UpdateThingGroupRequest) -> EventLoopFuture<UpdateThingGroupResponse>
-
Updates the groups to which the thing belongs.
Declaration
Swift
public func updateThingGroupsForThing(_ input: UpdateThingGroupsForThingRequest) -> EventLoopFuture<UpdateThingGroupsForThingResponse>
-
Updates a topic rule destination. You use this to change the status, endpoint URL, or confirmation URL of the destination.
Declaration
Swift
public func updateTopicRuleDestination(_ input: UpdateTopicRuleDestinationRequest) -> EventLoopFuture<UpdateTopicRuleDestinationResponse>
-
Validates a Device Defender security profile behaviors specification.
Declaration
Swift
public func validateSecurityProfileBehaviors(_ input: ValidateSecurityProfileBehaviorsRequest) -> EventLoopFuture<ValidateSecurityProfileBehaviorsResponse>
-
Lists the active violations for a given Device Defender security profile.
Declaration
Swift
public func listActiveViolationsPaginator(_ input: ListActiveViolationsRequest, onPage: @escaping (ListActiveViolationsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the policies attached to the specified thing group.
Declaration
Swift
public func listAttachedPoliciesPaginator(_ input: ListAttachedPoliciesRequest, onPage: @escaping (ListAttachedPoliciesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the findings (results) of a Device Defender audit or of the audits performed during a specified time period. (Findings are retained for 180 days.)
Declaration
Swift
public func listAuditFindingsPaginator(_ input: ListAuditFindingsRequest, onPage: @escaping (ListAuditFindingsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Gets the status of audit mitigation action tasks that were executed.
Declaration
Swift
public func listAuditMitigationActionsExecutionsPaginator(_ input: ListAuditMitigationActionsExecutionsRequest, onPage: @escaping (ListAuditMitigationActionsExecutionsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Gets a list of audit mitigation action tasks that match the specified filters.
Declaration
Swift
public func listAuditMitigationActionsTasksPaginator(_ input: ListAuditMitigationActionsTasksRequest, onPage: @escaping (ListAuditMitigationActionsTasksResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists your Device Defender audit listings.
Declaration
Swift
public func listAuditSuppressionsPaginator(_ input: ListAuditSuppressionsRequest, onPage: @escaping (ListAuditSuppressionsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the Device Defender audits that have been performed during a given time period.
Declaration
Swift
public func listAuditTasksPaginator(_ input: ListAuditTasksRequest, onPage: @escaping (ListAuditTasksResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the authorizers registered in your account.
Declaration
Swift
public func listAuthorizersPaginator(_ input: ListAuthorizersRequest, onPage: @escaping (ListAuthorizersResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the billing groups you have created.
Declaration
Swift
public func listBillingGroupsPaginator(_ input: ListBillingGroupsRequest, onPage: @escaping (ListBillingGroupsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the CA certificates registered for your AWS account. The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.
Declaration
Swift
public func listCACertificatesPaginator(_ input: ListCACertificatesRequest, onPage: @escaping (ListCACertificatesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the certificates registered in your AWS account. The results are paginated with a default page size of 25. You can use the returned marker to retrieve additional results.
Declaration
Swift
public func listCertificatesPaginator(_ input: ListCertificatesRequest, onPage: @escaping (ListCertificatesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
List the device certificates signed by the specified CA certificate.
Declaration
Swift
public func listCertificatesByCAPaginator(_ input: ListCertificatesByCARequest, onPage: @escaping (ListCertificatesByCAResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
List the set of dimensions that are defined for your AWS account.
Declaration
Swift
public func listDimensionsPaginator(_ input: ListDimensionsRequest, onPage: @escaping (ListDimensionsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Gets a list of domain configurations for the user. This list is sorted alphabetically by domain configuration name. The domain configuration feature is in public preview and is subject to change.
Declaration
Swift
public func listDomainConfigurationsPaginator(_ input: ListDomainConfigurationsRequest, onPage: @escaping (ListDomainConfigurationsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the search indices.
Declaration
Swift
public func listIndicesPaginator(_ input: ListIndicesRequest, onPage: @escaping (ListIndicesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the job executions for a job.
Declaration
Swift
public func listJobExecutionsForJobPaginator(_ input: ListJobExecutionsForJobRequest, onPage: @escaping (ListJobExecutionsForJobResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the job executions for the specified thing.
Declaration
Swift
public func listJobExecutionsForThingPaginator(_ input: ListJobExecutionsForThingRequest, onPage: @escaping (ListJobExecutionsForThingResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists jobs.
Declaration
Swift
public func listJobsPaginator(_ input: ListJobsRequest, onPage: @escaping (ListJobsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Gets a list of all mitigation actions that match the specified filter criteria.
Declaration
Swift
public func listMitigationActionsPaginator(_ input: ListMitigationActionsRequest, onPage: @escaping (ListMitigationActionsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists OTA updates.
Declaration
Swift
public func listOTAUpdatesPaginator(_ input: ListOTAUpdatesRequest, onPage: @escaping (ListOTAUpdatesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists certificates that are being transferred but not yet accepted.
Declaration
Swift
public func listOutgoingCertificatesPaginator(_ input: ListOutgoingCertificatesRequest, onPage: @escaping (ListOutgoingCertificatesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists your policies.
Declaration
Swift
public func listPoliciesPaginator(_ input: ListPoliciesRequest, onPage: @escaping (ListPoliciesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the principals associated with the specified policy. Note: This API is deprecated. Please use ListTargetsForPolicy instead.
Declaration
Swift
@available(*, deprecated, message: "ListPolicyPrincipals is deprecated.") public func listPolicyPrincipalsPaginator(_ input: ListPolicyPrincipalsRequest, onPage: @escaping (ListPolicyPrincipalsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the policies attached to the specified principal. If you use an Cognito identity, the ID must be in AmazonCognito Identity format. Note: This API is deprecated. Please use ListAttachedPolicies instead.
Declaration
Swift
@available(*, deprecated, message: "ListPrincipalPolicies is deprecated.") public func listPrincipalPoliciesPaginator(_ input: ListPrincipalPoliciesRequest, onPage: @escaping (ListPrincipalPoliciesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the things associated with the specified principal. A principal can be X.509 certificates, IAM users, groups, and roles, Amazon Cognito identities or federated identities.
Declaration
Swift
public func listPrincipalThingsPaginator(_ input: ListPrincipalThingsRequest, onPage: @escaping (ListPrincipalThingsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
A list of fleet provisioning template versions.
Declaration
Swift
public func listProvisioningTemplateVersionsPaginator(_ input: ListProvisioningTemplateVersionsRequest, onPage: @escaping (ListProvisioningTemplateVersionsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the fleet provisioning templates in your AWS account.
Declaration
Swift
public func listProvisioningTemplatesPaginator(_ input: ListProvisioningTemplatesRequest, onPage: @escaping (ListProvisioningTemplatesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the role aliases registered in your account.
Declaration
Swift
public func listRoleAliasesPaginator(_ input: ListRoleAliasesRequest, onPage: @escaping (ListRoleAliasesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists all of your scheduled audits.
Declaration
Swift
public func listScheduledAuditsPaginator(_ input: ListScheduledAuditsRequest, onPage: @escaping (ListScheduledAuditsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the Device Defender security profiles you have created. You can use filters to list only those security profiles associated with a thing group or only those associated with your account.
Declaration
Swift
public func listSecurityProfilesPaginator(_ input: ListSecurityProfilesRequest, onPage: @escaping (ListSecurityProfilesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the Device Defender security profiles attached to a target (thing group).
Declaration
Swift
public func listSecurityProfilesForTargetPaginator(_ input: ListSecurityProfilesForTargetRequest, onPage: @escaping (ListSecurityProfilesForTargetResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists all of the streams in your AWS account.
Declaration
Swift
public func listStreamsPaginator(_ input: ListStreamsRequest, onPage: @escaping (ListStreamsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the tags (metadata) you have assigned to the resource.
Declaration
Swift
public func listTagsForResourcePaginator(_ input: ListTagsForResourceRequest, onPage: @escaping (ListTagsForResourceResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
List targets for the specified policy.
Declaration
Swift
public func listTargetsForPolicyPaginator(_ input: ListTargetsForPolicyRequest, onPage: @escaping (ListTargetsForPolicyResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the targets (thing groups) associated with a given Device Defender security profile.
Declaration
Swift
public func listTargetsForSecurityProfilePaginator(_ input: ListTargetsForSecurityProfileRequest, onPage: @escaping (ListTargetsForSecurityProfileResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
List the thing groups in your account.
Declaration
Swift
public func listThingGroupsPaginator(_ input: ListThingGroupsRequest, onPage: @escaping (ListThingGroupsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
List the thing groups to which the specified thing belongs.
Declaration
Swift
public func listThingGroupsForThingPaginator(_ input: ListThingGroupsForThingRequest, onPage: @escaping (ListThingGroupsForThingResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Information about the thing registration tasks.
Declaration
Swift
public func listThingRegistrationTaskReportsPaginator(_ input: ListThingRegistrationTaskReportsRequest, onPage: @escaping (ListThingRegistrationTaskReportsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
List bulk thing provisioning tasks.
Declaration
Swift
public func listThingRegistrationTasksPaginator(_ input: ListThingRegistrationTasksRequest, onPage: @escaping (ListThingRegistrationTasksResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the existing thing types.
Declaration
Swift
public func listThingTypesPaginator(_ input: ListThingTypesRequest, onPage: @escaping (ListThingTypesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists your things. Use the attributeName and attributeValue parameters to filter your things. For example, calling ListThings with attributeName=Color and attributeValue=Red retrieves all things in the registry that contain an attribute Color with the value Red. You will not be charged for calling this API if an Access denied error is returned. You will also not be charged if no attributes or pagination token was provided in request and no pagination token and no results were returned.
Declaration
Swift
public func listThingsPaginator(_ input: ListThingsRequest, onPage: @escaping (ListThingsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the things you have added to the given billing group.
Declaration
Swift
public func listThingsInBillingGroupPaginator(_ input: ListThingsInBillingGroupRequest, onPage: @escaping (ListThingsInBillingGroupResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the things in the specified group.
Declaration
Swift
public func listThingsInThingGroupPaginator(_ input: ListThingsInThingGroupRequest, onPage: @escaping (ListThingsInThingGroupResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists all the topic rule destinations in your AWS account.
Declaration
Swift
public func listTopicRuleDestinationsPaginator(_ input: ListTopicRuleDestinationsRequest, onPage: @escaping (ListTopicRuleDestinationsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the rules for the specific topic.
Declaration
Swift
public func listTopicRulesPaginator(_ input: ListTopicRulesRequest, onPage: @escaping (ListTopicRulesResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists logging levels.
Declaration
Swift
public func listV2LoggingLevelsPaginator(_ input: ListV2LoggingLevelsRequest, onPage: @escaping (ListV2LoggingLevelsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Lists the Device Defender security profile violations discovered during the given time period. You can use filters to limit the results to those alerts issued for a particular security profile, behavior, or thing (device).
Declaration
Swift
public func listViolationEventsPaginator(_ input: ListViolationEventsRequest, onPage: @escaping (ListViolationEventsResponse, EventLoop) -> EventLoopFuture<Bool>) -> EventLoopFuture<Void>
-
Undocumented
See moreDeclaration
Swift
public struct ListActiveViolationsRequest : AWSShape
extension IoT.ListActiveViolationsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAttachedPoliciesRequest : AWSShape
extension IoT.ListAttachedPoliciesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAuditFindingsRequest : AWSShape
extension IoT.ListAuditFindingsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAuditMitigationActionsExecutionsRequest : AWSShape
extension IoT.ListAuditMitigationActionsExecutionsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAuditMitigationActionsTasksRequest : AWSShape
extension IoT.ListAuditMitigationActionsTasksRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAuditSuppressionsRequest : AWSShape
extension IoT.ListAuditSuppressionsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAuditTasksRequest : AWSShape
extension IoT.ListAuditTasksRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListAuthorizersRequest : AWSShape
extension IoT.ListAuthorizersRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListBillingGroupsRequest : AWSShape
extension IoT.ListBillingGroupsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListCACertificatesRequest : AWSShape
extension IoT.ListCACertificatesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListCertificatesRequest : AWSShape
extension IoT.ListCertificatesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListCertificatesByCARequest : AWSShape
extension IoT.ListCertificatesByCARequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListDimensionsRequest : AWSShape
extension IoT.ListDimensionsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListDomainConfigurationsRequest : AWSShape
extension IoT.ListDomainConfigurationsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListIndicesRequest : AWSShape
extension IoT.ListIndicesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListJobExecutionsForJobRequest : AWSShape
extension IoT.ListJobExecutionsForJobRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListJobExecutionsForThingRequest : AWSShape
extension IoT.ListJobExecutionsForThingRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListJobsRequest : AWSShape
extension IoT.ListJobsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListMitigationActionsRequest : AWSShape
extension IoT.ListMitigationActionsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListOTAUpdatesRequest : AWSShape
extension IoT.ListOTAUpdatesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListOutgoingCertificatesRequest : AWSShape
extension IoT.ListOutgoingCertificatesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListPoliciesRequest : AWSShape
extension IoT.ListPoliciesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListPolicyPrincipalsRequest : AWSShape
extension IoT.ListPolicyPrincipalsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListPrincipalPoliciesRequest : AWSShape
extension IoT.ListPrincipalPoliciesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListPrincipalThingsRequest : AWSShape
extension IoT.ListPrincipalThingsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListProvisioningTemplateVersionsRequest : AWSShape
extension IoT.ListProvisioningTemplateVersionsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListProvisioningTemplatesRequest : AWSShape
extension IoT.ListProvisioningTemplatesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListRoleAliasesRequest : AWSShape
extension IoT.ListRoleAliasesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListScheduledAuditsRequest : AWSShape
extension IoT.ListScheduledAuditsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListSecurityProfilesRequest : AWSShape
extension IoT.ListSecurityProfilesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListSecurityProfilesForTargetRequest : AWSShape
extension IoT.ListSecurityProfilesForTargetRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListStreamsRequest : AWSShape
extension IoT.ListStreamsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTagsForResourceRequest : AWSShape
extension IoT.ListTagsForResourceRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTargetsForPolicyRequest : AWSShape
extension IoT.ListTargetsForPolicyRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTargetsForSecurityProfileRequest : AWSShape
extension IoT.ListTargetsForSecurityProfileRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingGroupsRequest : AWSShape
extension IoT.ListThingGroupsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingGroupsForThingRequest : AWSShape
extension IoT.ListThingGroupsForThingRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingRegistrationTaskReportsRequest : AWSShape
extension IoT.ListThingRegistrationTaskReportsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingRegistrationTasksRequest : AWSShape
extension IoT.ListThingRegistrationTasksRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingTypesRequest : AWSShape
extension IoT.ListThingTypesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingsRequest : AWSShape
extension IoT.ListThingsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingsInBillingGroupRequest : AWSShape
extension IoT.ListThingsInBillingGroupRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListThingsInThingGroupRequest : AWSShape
extension IoT.ListThingsInThingGroupRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTopicRuleDestinationsRequest : AWSShape
extension IoT.ListTopicRuleDestinationsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListTopicRulesRequest : AWSShape
extension IoT.ListTopicRulesRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListV2LoggingLevelsRequest : AWSShape
extension IoT.ListV2LoggingLevelsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public struct ListViolationEventsRequest : AWSShape
extension IoT.ListViolationEventsRequest: AWSPaginateStringToken
-
Undocumented
See moreDeclaration
Swift
public enum AbortAction : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ActionType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AlertTargetType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditCheckRunStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditFindingSeverity : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditFrequency : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditMitigationActionsExecutionStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditMitigationActionsTaskStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditNotificationType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditTaskStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuditTaskType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuthDecision : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AuthorizerStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AutoRegistrationStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AwsJobAbortCriteriaAbortAction : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum AwsJobAbortCriteriaFailureType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum CACertificateStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum CACertificateUpdateAction : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum CannedAccessControlList : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum CertificateMode : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum CertificateStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ComparisonOperator : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DayOfWeek : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DeviceCertificateUpdateAction : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DimensionType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DimensionValueOperator : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DomainConfigurationStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DomainType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DynamicGroupStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum DynamoKeyType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum EventType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum FieldType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum IndexStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum JobExecutionFailureType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum JobExecutionStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum JobStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum LogLevel : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum LogTargetType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum MessageFormat : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum MitigationActionType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum OTAUpdateStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum PolicyTemplateName : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum `Protocol` : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ReportType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ResourceType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ServerCertificateStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ServiceType : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum Status : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum TargetSelection : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ThingConnectivityIndexingMode : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ThingGroupIndexingMode : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ThingIndexingMode : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum TopicRuleDestinationStatus : String, CustomStringConvertible, Codable
-
Undocumented
See moreDeclaration
Swift
public enum ViolationEventType : String, CustomStringConvertible, Codable