Show / Hide Table of Contents

Interface CfnPentest.IActorProperty

An authenticated actor to be used during pentest execution.

Namespace: Amazon.CDK.AWS.SecurityAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnPentest.IActorProperty
Syntax (vb)
Public Interface CfnPentest.IActorProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityagent-pentest-actor.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SecurityAgent;

             var actorProperty = new ActorProperty {
                 Authentication = new AuthenticationProperty {
                     ProviderType = "providerType",
                     Value = "value"
                 },
                 Description = "description",
                 Identifier = "identifier",
                 Uris = new [] { "uris" }
             };

Synopsis

Properties

Authentication

Authentication configuration for a pentest actor.

Description

Description of the actor.

Identifier

Identifier for the actor.

Uris

List of URIs this actor is authorized to access.

Properties

Authentication

Authentication configuration for a pentest actor.

object? Authentication { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityagent-pentest-actor.html#cfn-securityagent-pentest-actor-authentication

Type union: either IResolvable or CfnPentest.IAuthenticationProperty

Description

Description of the actor.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityagent-pentest-actor.html#cfn-securityagent-pentest-actor-description

Identifier

Identifier for the actor.

string? Identifier { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityagent-pentest-actor.html#cfn-securityagent-pentest-actor-identifier

Uris

List of URIs this actor is authorized to access.

string[]? Uris { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityagent-pentest-actor.html#cfn-securityagent-pentest-actor-uris

Back to top Generated by DocFX