AWSIoTCreateAuditSuppressionRequest
Objective-C
@interface AWSIoTCreateAuditSuppressionRequest
Swift
class AWSIoTCreateAuditSuppressionRequest
-
An audit check name. Checks must be enabled for your account. (Use
DescribeAccountAuditConfiguration
to see the list of all checks, including those that are enabled or useUpdateAccountAuditConfiguration
to select which checks are enabled.)Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable checkName;
Swift
var checkName: String? { get set }
-
Each audit supression must have a unique client request token. If you try to create a new audit suppression with the same token as one that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable clientRequestToken;
Swift
var clientRequestToken: String? { get set }
-
The description of the audit suppression.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detail;
Swift
var detail: String? { get set }
-
The epoch timestamp in seconds at which this suppression expires.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable expirationDate;
Swift
var expirationDate: Date? { get set }
-
Information that identifies the noncompliant resource.
Declaration
Objective-C
@property (nonatomic, strong) AWSIoTResourceIdentifier *_Nullable resourceIdentifier;
Swift
var resourceIdentifier: AWSIoTResourceIdentifier? { get set }
-
Indicates whether a suppression should exist indefinitely or not.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable suppressIndefinitely;
Swift
var suppressIndefinitely: NSNumber? { get set }