CreateProfilingGroupRequest

public struct CreateProfilingGroupRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Specifies whether profiling is enabled or disabled for the created profiling group.

    Declaration

    Swift

    public let agentOrchestrationConfig: AgentOrchestrationConfig?
  • Amazon CodeGuru Profiler uses this universally unique identifier (UUID) to prevent the accidental creation of duplicate profiling groups if there are failures and retries.

    Declaration

    Swift

    public let clientToken: String
  • The compute platform of the profiling group. Use AWSLambda if your application runs on AWS Lambda. Use Default if your application runs on a compute platform that is not AWS Lambda, such an Amazon EC2 instance, an on-premises server, or a different platform. If not specified, Default is used.

    Declaration

    Swift

    public let computePlatform: ComputePlatform?
  • The name of the profiling group to create.

    Declaration

    Swift

    public let profilingGroupName: String
  • A list of tags to add to the created profiling group.

    Declaration

    Swift

    public let tags: [String : String]?
  • Undocumented

    Declaration

    Swift

    public init(agentOrchestrationConfig: AgentOrchestrationConfig? = nil, clientToken: String = CreateProfilingGroupRequest.idempotencyToken(), computePlatform: ComputePlatform? = nil, profilingGroupName: String, tags: [String : String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws