Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NetworkStatus ¶
type NetworkStatus string
NetworkStatus represents the status of a network resource.
const ( // NetworkNone is the initial status of the ENI. NetworkNone NetworkStatus = "NONE" // NetworkReadyPull indicates that the ENI is ready for downloading resources associated with // the execution role. This includes container images, task secrets and configs. NetworkReadyPull NetworkStatus = "READY_PULL" // NetworkReady indicates that the ENI is ready for use by containers in the task. NetworkReady NetworkStatus = "READY" // NetworkDeleted indicates that the ENI is deleted. NetworkDeleted NetworkStatus = "DELETED" )
func GetAllNetworkStatuses ¶
func GetAllNetworkStatuses() []NetworkStatus
func (NetworkStatus) StatusBackwards ¶
func (es NetworkStatus) StatusBackwards(es2 NetworkStatus) bool
func (NetworkStatus) String ¶
func (es NetworkStatus) String() string
Click to show internal directories.
Click to hide internal directories.