Show / Hide Table of Contents

Class CfnPentestPropsMixin.AssetsProperty

Collection of assets to be tested during the pentest.

Inheritance
object
CfnPentestPropsMixin.AssetsProperty
Implements
CfnPentestPropsMixin.IAssetsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPentestPropsMixin.AssetsProperty : CfnPentestPropsMixin.IAssetsProperty
Syntax (vb)
Public Class CfnPentestPropsMixin.AssetsProperty Implements CfnPentestPropsMixin.IAssetsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityagent-pentest-assets.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.CfnPropertyMixins.AWS.SecurityAgent;

             var assetsProperty = new AssetsProperty {
                 Actors = new [] { new ActorProperty {
                     Authentication = new AuthenticationProperty {
                         ProviderType = "providerType",
                         Value = "value"
                     },
                     Description = "description",
                     Identifier = "identifier",
                     Uris = new [] { "uris" }
                 } },
                 Documents = new [] { new DocumentInfoProperty {
                     ArtifactId = "artifactId",
                     S3Location = "s3Location"
                 } },
                 Endpoints = new [] { new EndpointProperty {
                     Uri = "uri"
                 } },
                 IntegratedRepositories = new [] { new IntegratedRepositoryProperty {
                     IntegrationId = "integrationId",
                     ProviderResourceId = "providerResourceId"
                 } },
                 SourceCode = new [] { new SourceCodeRepositoryProperty {
                     S3Location = "s3Location"
                 } }
             };

Synopsis

Constructors

AssetsProperty()

Collection of assets to be tested during the pentest.

Properties

Actors

List of actors used during testing.

Documents

List of documents providing additional context for the pentest.

Endpoints

List of endpoints to test.

IntegratedRepositories

List of repositories connected via provider integrations.

SourceCode

List of source code repositories to analyze.

Constructors

AssetsProperty()

Collection of assets to be tested during the pentest.

public AssetsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityagent-pentest-assets.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.CfnPropertyMixins.AWS.SecurityAgent;

             var assetsProperty = new AssetsProperty {
                 Actors = new [] { new ActorProperty {
                     Authentication = new AuthenticationProperty {
                         ProviderType = "providerType",
                         Value = "value"
                     },
                     Description = "description",
                     Identifier = "identifier",
                     Uris = new [] { "uris" }
                 } },
                 Documents = new [] { new DocumentInfoProperty {
                     ArtifactId = "artifactId",
                     S3Location = "s3Location"
                 } },
                 Endpoints = new [] { new EndpointProperty {
                     Uri = "uri"
                 } },
                 IntegratedRepositories = new [] { new IntegratedRepositoryProperty {
                     IntegrationId = "integrationId",
                     ProviderResourceId = "providerResourceId"
                 } },
                 SourceCode = new [] { new SourceCodeRepositoryProperty {
                     S3Location = "s3Location"
                 } }
             };

Properties

Actors

List of actors used during testing.

public object? Actors { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnPentestPropsMixin.IActorProperty)[]

Documents

List of documents providing additional context for the pentest.

public object? Documents { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnPentestPropsMixin.IDocumentInfoProperty)[]

Endpoints

List of endpoints to test.

public object? Endpoints { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnPentestPropsMixin.IEndpointProperty)[]

IntegratedRepositories

List of repositories connected via provider integrations.

public object? IntegratedRepositories { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnPentestPropsMixin.IIntegratedRepositoryProperty)[]

SourceCode

List of source code repositories to analyze.

public object? SourceCode { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnPentestPropsMixin.ISourceCodeRepositoryProperty)[]

Implements

CfnPentestPropsMixin.IAssetsProperty
Back to top Generated by DocFX