ListDiscoveredResourcesRequest

public struct ListDiscoveredResourcesRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Specifies whether AWS Config includes deleted resources in the results. By default, deleted resources are not included.

    Declaration

    Swift

    public let includeDeletedResources: Bool?
  • The maximum number of resource identifiers 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 IDs of only those resources that you want AWS Config to list in the response. If you do not specify this parameter, AWS Config lists all resources of the specified type that it has discovered.

    Declaration

    Swift

    public let resourceIds: [String]?
  • The custom name of only those resources that you want AWS Config to list in the response. If you do not specify this parameter, AWS Config lists all resources of the specified type that it has discovered.

    Declaration

    Swift

    public let resourceName: String?
  • The type of resources that you want AWS Config to list in the response.

    Declaration

    Swift

    public let resourceType: ResourceType
  • Undocumented

    Declaration

    Swift

    public init(includeDeletedResources: Bool? = nil, limit: Int? = nil, nextToken: String? = nil, resourceIds: [String]? = nil, resourceName: String? = nil, resourceType: ResourceType)
  • Declaration

    Swift

    public func validate(name: String) throws