1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Information about an address.
type Address struct {
// The city for this address.
//
// This member is required.
City *string
// The country for this address.
//
// This member is required.
Country *string
// The recipient's name for this address.
//
// This member is required.
Name *string
// The postal code for this address.
//
// This member is required.
PostalCode *string
// The state or province for this address.
//
// This member is required.
StateOrProvince *string
// The first line of the street address.
//
// This member is required.
Street1 *string
// The company name for this address.
Company *string
// The recipient's email address.
EmailAddress *string
// The recipient's phone number.
PhoneNumber *string
// The second line of the street address.
Street2 *string
// The third line of the street address.
Street3 *string
noSmithyDocumentSerde
}
// Determines the duration and renewal status of the commitment period for a radio
// unit.
//
// For pricing, see [Amazon Web Services Private 5G Pricing].
//
// [Amazon Web Services Private 5G Pricing]: http://aws.amazon.com/private5g/pricing
type CommitmentConfiguration struct {
// Determines whether the commitment period for a radio unit is set to
// automatically renew for an additional 1 year after your current commitment
// period expires.
//
// Set to True , if you want your commitment period to automatically renew. Set to
// False if you do not want your commitment to automatically renew.
//
// You can do the following:
//
// - Set a 1-year commitment to automatically renew for an additional 1 year.
// The hourly rate for the additional year will continue to be the same as your
// existing 1-year rate.
//
// - Set a 3-year commitment to automatically renew for an additional 1 year.
// The hourly rate for the additional year will continue to be the same as your
// existing 3-year rate.
//
// - Turn off a previously-enabled automatic renewal on a 1-year or 3-year
// commitment.
//
// You cannot use the automatic-renewal option for a 60-day commitment.
//
// This member is required.
AutomaticRenewal *bool
// The duration of the commitment period for the radio unit. You can choose a
// 60-day, 1-year, or 3-year period.
//
// This member is required.
CommitmentLength CommitmentLength
noSmithyDocumentSerde
}
// Shows the duration, the date and time that the contract started and ends, and
// the renewal status of the commitment period for the radio unit.
type CommitmentInformation struct {
// The duration and renewal status of the commitment period for the radio unit.
//
// This member is required.
CommitmentConfiguration *CommitmentConfiguration
// The date and time that the commitment period ends. If you do not cancel or
// renew the commitment before the expiration date, you will be billed at the
// 60-day-commitment rate.
ExpiresOn *time.Time
// The date and time that the commitment period started.
StartAt *time.Time
noSmithyDocumentSerde
}
// Information about a subscriber of a device that can use a network.
type DeviceIdentifier struct {
// The creation time of this device identifier.
CreatedAt *time.Time
// The Amazon Resource Name (ARN) of the device identifier.
DeviceIdentifierArn *string
// The Integrated Circuit Card Identifier of the device identifier.
Iccid *string
// The International Mobile Subscriber Identity of the device identifier.
Imsi *string
// The Amazon Resource Name (ARN) of the network on which the device identifier
// appears.
NetworkArn *string
// The Amazon Resource Name (ARN) of the order used to purchase the device
// identifier.
OrderArn *string
// The status of the device identifier.
Status DeviceIdentifierStatus
// The Amazon Resource Name (ARN) of the traffic group to which the device
// identifier belongs.
TrafficGroupArn *string
// The vendor of the device identifier.
Vendor *string
noSmithyDocumentSerde
}
// Information about a name/value pair.
type NameValuePair struct {
// The name of the pair.
//
// This member is required.
Name *string
// The value of the pair.
Value *string
noSmithyDocumentSerde
}
// Information about a network.
type Network struct {
// The Amazon Resource Name (ARN) of the network.
//
// This member is required.
NetworkArn *string
// The name of the network.
//
// This member is required.
NetworkName *string
// The status of the network.
//
// This member is required.
Status NetworkStatus
// The creation time of the network.
CreatedAt *time.Time
// The description of the network.
Description *string
// The status reason of the network.
StatusReason *string
noSmithyDocumentSerde
}
// Information about a network resource.
type NetworkResource struct {
// The attributes of the network resource.
Attributes []NameValuePair
// Information about the commitment period for the radio unit. Shows the duration,
// the date and time that the contract started and ends, and the renewal status of
// the commitment period.
CommitmentInformation *CommitmentInformation
// The creation time of the network resource.
CreatedAt *time.Time
// The description of the network resource.
Description *string
// The health of the network resource.
Health HealthStatus
// The model of the network resource.
Model *string
// The Amazon Resource Name (ARN) of the network on which this network resource
// appears.
NetworkArn *string
// The Amazon Resource Name (ARN) of the network resource.
NetworkResourceArn *string
// The Amazon Resource Name (ARN) of the network site on which this network
// resource appears.
NetworkSiteArn *string
// The Amazon Resource Name (ARN) of the order used to purchase this network
// resource.
OrderArn *string
// The position of the network resource.
Position *Position
// Information about a request to return the network resource.
ReturnInformation *ReturnInformation
// The serial number of the network resource.
SerialNumber *string
// The status of the network resource.
Status NetworkResourceStatus
// The status reason of the network resource.
StatusReason *string
// The type of the network resource.
Type NetworkResourceType
// The vendor of the network resource.
Vendor *string
noSmithyDocumentSerde
}
// Information about a network resource definition.
type NetworkResourceDefinition struct {
// The count in the network resource definition.
//
// This member is required.
Count *int32
// The type in the network resource definition.
//
// This member is required.
Type NetworkResourceDefinitionType
// The options in the network resource definition.
Options []NameValuePair
noSmithyDocumentSerde
}
// Information about a network site.
type NetworkSite struct {
// The Amazon Resource Name (ARN) of the network to which the network site belongs.
//
// This member is required.
NetworkArn *string
// The Amazon Resource Name (ARN) of the network site.
//
// This member is required.
NetworkSiteArn *string
// The name of the network site.
//
// This member is required.
NetworkSiteName *string
// The status of the network site.
//
// This member is required.
Status NetworkSiteStatus
// The parent Availability Zone for the network site.
AvailabilityZone *string
// The parent Availability Zone ID for the network site.
AvailabilityZoneId *string
// The creation time of the network site.
CreatedAt *time.Time
// The current plan of the network site.
CurrentPlan *SitePlan
// The description of the network site.
Description *string
// The pending plan of the network site.
PendingPlan *SitePlan
// The status reason of the network site.
StatusReason *string
noSmithyDocumentSerde
}
// Information about an order.
type Order struct {
// The acknowledgement status of the order.
AcknowledgmentStatus AcknowledgmentStatus
// The creation time of the order.
CreatedAt *time.Time
// The Amazon Resource Name (ARN) of the network associated with this order.
NetworkArn *string
// The Amazon Resource Name (ARN) of the network site associated with this order.
NetworkSiteArn *string
// The Amazon Resource Name (ARN) of the order.
OrderArn *string
// A list of the network resources placed in the order.
OrderedResources []OrderedResourceDefinition
// The shipping address of the order.
ShippingAddress *Address
// The tracking information of the order.
TrackingInformation []TrackingInformation
noSmithyDocumentSerde
}
// Details of the network resources in the order.
type OrderedResourceDefinition struct {
// The number of network resources in the order.
//
// This member is required.
Count *int32
// The type of network resource in the order.
//
// This member is required.
Type NetworkResourceDefinitionType
// The duration and renewal status of the commitment period for each radio unit in
// the order. Does not show details if the resource type is DEVICE_IDENTIFIER.
CommitmentConfiguration *CommitmentConfiguration
noSmithyDocumentSerde
}
// Information about a position.
type Position struct {
// The elevation of the equipment at this position.
Elevation *float64
// The reference point from which elevation is reported.
ElevationReference ElevationReference
// The units used to measure the elevation of the position.
ElevationUnit ElevationUnit
// The latitude of the position.
Latitude *float64
// The longitude of the position.
Longitude *float64
noSmithyDocumentSerde
}
// Information about a request to return a network resource.
type ReturnInformation struct {
// The Amazon Resource Name (ARN) of the replacement order.
ReplacementOrderArn *string
// The reason for the return. If the return request did not include a reason for
// the return, this value is null.
ReturnReason *string
// The shipping address.
ShippingAddress *Address
// The URL of the shipping label. The shipping label is available for download
// only if the status of the network resource is PENDING_RETURN . For more
// information, see [Return a radio unit].
//
// [Return a radio unit]: https://docs.aws.amazon.com/private-networks/latest/userguide/radio-units.html#return-radio-unit
ShippingLabel *string
noSmithyDocumentSerde
}
// Information about a site plan.
type SitePlan struct {
// The options of the plan.
Options []NameValuePair
// The resource definitions of the plan.
ResourceDefinitions []NetworkResourceDefinition
noSmithyDocumentSerde
}
// Information about tracking a shipment.
type TrackingInformation struct {
// The tracking number of the shipment.
TrackingNumber *string
noSmithyDocumentSerde
}
// Information about a field that failed validation.
type ValidationExceptionField struct {
// The message about the validation failure.
//
// This member is required.
Message *string
// The field name that failed validation.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|