Current section
Files
Jump to
Current section
Files
lib/ex_aws/chime/termination.ex
defmodule ExAws.Chime.Termination do
@moduledoc """
Module representing the Chime Termination data type
See https://docs.aws.amazon.com/chime/latest/APIReference/API_Termination.html
"""
defstruct [
:calling_regions,
:cidr_allowed_list,
:cps_limit,
:default_phone_number,
:disabled
]
@type t :: %__MODULE__{
calling_regions: [String.t()] | nil,
cidr_allowed_list: [String.t()] | nil,
cps_limit: pos_integer() | nil,
default_phone_number: String.t() | nil,
disabled: boolean() | nil
}
end