GetDiscoveredResourceCountsRequest
public struct GetDiscoveredResourceCountsRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The maximum number of ResourceCount objects returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, AWS Config uses the default.
Declaration
Swift
public let limit: Int?
-
The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.
Declaration
Swift
public let nextToken: String?
-
The comma-separated list that specifies the resource types that you want AWS Config to return (for example, “AWS::EC2::Instance”, “AWS::IAM::User”). If a value for resourceTypes is not specified, AWS Config returns all resource types that AWS Config is recording in the region for your account. If the configuration recorder is turned off, AWS Config returns an empty list of ResourceCount objects. If the configuration recorder is not recording a specific resource type (for example, S3 buckets), that resource type is not returned in the list of ResourceCount objects.
Declaration
Swift
public let resourceTypes: [String]?
-
Undocumented
Declaration
Swift
public init(limit: Int? = nil, nextToken: String? = nil, resourceTypes: [String]? = nil)
-
Declaration
Swift
public func validate(name: String) throws