Learn R Programming

paws.security.identity (version 0.1.12)

guardduty_create_ip_set: Creates a new IPSet, which is called a trusted IP list in the console user interface

Description

Creates a new IPSet, which is called a trusted IP list in the console user interface. An IPSet is a list of IP addresses that are trusted for secure communication with AWS infrastructure and applications. GuardDuty doesn't generate findings for IP addresses that are included in IPSets. Only users from the administrator account can use this operation.

Usage

guardduty_create_ip_set(DetectorId, Name, Format, Location, Activate,
  ClientToken, Tags)

Value

A list with the following syntax:

list(
  IpSetId = "string"
)

Arguments

DetectorId

[required] The unique ID of the detector of the GuardDuty account that you want to create an IPSet for.

Name

[required] The user-friendly name to identify the IPSet.

Allowed characters are alphanumerics, spaces, hyphens (-), and underscores (_).

Format

[required] The format of the file that contains the IPSet.

Location

[required] The URI of the file that contains the IPSet. For example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.

Activate

[required] A Boolean value that indicates whether GuardDuty is to start using the uploaded IPSet.

ClientToken

The idempotency token for the create request.

Tags

The tags to be added to a new IP set resource.

Request syntax

svc$create_ip_set(
  DetectorId = "string",
  Name = "string",
  Format = "TXT"|"STIX"|"OTX_CSV"|"ALIEN_VAULT"|"PROOF_POINT"|"FIRE_EYE",
  Location = "string",
  Activate = TRUE|FALSE,
  ClientToken = "string",
  Tags = list(
    "string"
  )
)