Describe Mac Modification Tasks
| ec2_describe_mac_modification_tasks | R Documentation |
Describes a System Integrity Protection (SIP) modification task or volume ownership delegation task for an Amazon EC2 Mac instance¶
Description¶
Describes a System Integrity Protection (SIP) modification task or volume ownership delegation task for an Amazon EC2 Mac instance. For more information, see Configure SIP for Amazon EC2 instances in the Amazon EC2 User Guide.
Usage¶
ec2_describe_mac_modification_tasks(DryRun, Filters,
MacModificationTaskIds, MaxResults, NextToken)
Arguments¶
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
Filters |
Specifies one or more filters for the request:
|
MacModificationTaskIds |
The ID of task. |
MaxResults |
The maximum number of results to return for the request in a
single page. The remaining results can be seen by sending another
request with the returned |
NextToken |
The token to use to retrieve the next page of results. |
Value¶
A list with the following syntax:
list(
MacModificationTasks = list(
list(
InstanceId = "string",
MacModificationTaskId = "string",
MacSystemIntegrityProtectionConfig = list(
AppleInternal = "enabled"|"disabled",
BaseSystem = "enabled"|"disabled",
DebuggingRestrictions = "enabled"|"disabled",
DTraceRestrictions = "enabled"|"disabled",
FilesystemProtections = "enabled"|"disabled",
KextSigning = "enabled"|"disabled",
NvramProtections = "enabled"|"disabled",
Status = "enabled"|"disabled"
),
StartTime = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
TaskState = "successful"|"failed"|"in-progress"|"pending",
TaskType = "sip-modification"|"volume-ownership-delegation"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_mac_modification_tasks(
DryRun = TRUE|FALSE,
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MacModificationTaskIds = list(
"string"
),
MaxResults = 123,
NextToken = "string"
)