You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::FMS::Types::PutAppsListRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PutAppsListRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  apps_list: { # required
    list_id: "ListId",
    list_name: "ResourceName", # required
    list_update_token: "UpdateToken",
    create_time: Time.now,
    last_update_time: Time.now,
    apps_list: [ # required
      {
        app_name: "ResourceName", # required
        protocol: "Protocol", # required
        port: 1, # required
      },
    ],
    previous_apps_list: {
      "PreviousListVersion" => [
        {
          app_name: "ResourceName", # required
          protocol: "Protocol", # required
          port: 1, # required
        },
      ],
    },
  },
  tag_list: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#apps_listTypes::AppsListData

The details of the AWS Firewall Manager applications list to be created.

Returns:

  • (Types::AppsListData)

    The details of the AWS Firewall Manager applications list to be created.

#tag_listArray<Types::Tag>

The tags associated with the resource.

Returns:

  • (Array<Types::Tag>)

    The tags associated with the resource.