github.com/openshift/installer@v1.4.17/pkg/types/aws/availabilityzones.go (about)

     1  package aws
     2  
     3  const (
     4  	// AvailabilityZoneType is the type of regular zone placed on the region.
     5  	AvailabilityZoneType = "availability-zone"
     6  	// LocalZoneType is the type of AWS Local Zones placed on the metropolitan area.
     7  	LocalZoneType = "local-zone"
     8  	// WavelengthZoneType is the type of AWS Wavelength Zones placed on the telecommunications
     9  	// providers’ data centers at the edge of the 5G network.
    10  	WavelengthZoneType = "wavelength-zone"
    11  	// ZoneOptInStatusOptedIn is the opt-in status of the zone.
    12  	// For Availability Zones, this parameter always has the value of opt-in-not-required.
    13  	// For Local Zones and Wavelength Zones, this parameter is the opt-in status.
    14  	ZoneOptInStatusOptedIn = "opted-in"
    15  )