AWSEC2IpamScope

Objective-C

@interface AWSEC2IpamScope

Swift

class AWSEC2IpamScope

In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

For more information, see How IPAM works in the Amazon VPC IPAM User Guide.

  • The description of the scope.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable detail;

    Swift

    var detail: String? { get set }
  • The ARN of the IPAM.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable ipamArn;

    Swift

    var ipamArn: String? { get set }
  • The Amazon Web Services Region of the IPAM scope.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable ipamRegion;

    Swift

    var ipamRegion: String? { get set }
  • The Amazon Resource Name (ARN) of the scope.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable ipamScopeArn;

    Swift

    var ipamScopeArn: String? { get set }
  • The ID of the scope.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable ipamScopeId;

    Swift

    var ipamScopeId: String? { get set }
  • The type of the scope.

    Declaration

    Objective-C

    @property (nonatomic) AWSEC2IpamScopeType ipamScopeType;

    Swift

    var ipamScopeType: AWSEC2IpamScopeType { get set }
  • Defines if the scope is the default scope or not.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable isDefault;

    Swift

    var isDefault: NSNumber? { get set }
  • The Amazon Web Services account ID of the owner of the scope.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable ownerId;

    Swift

    var ownerId: String? { get set }
  • The number of pools in the scope.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable poolCount;

    Swift

    var poolCount: NSNumber? { get set }
  • The state of the IPAM scope.

    Declaration

    Objective-C

    @property (nonatomic) AWSEC2IpamScopeState state;

    Swift

    var state: AWSEC2IpamScopeState { get set }
  • The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSEC2Tag *> *_Nullable tags;

    Swift

    var tags: [AWSEC2Tag]? { get set }