interface IntegratedRepositoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnPentest.IntegratedRepositoryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnPentest_IntegratedRepositoryProperty |
Java | software.amazon.awscdk.services.securityagent.CfnPentest.IntegratedRepositoryProperty |
Python | aws_cdk.aws_securityagent.CfnPentest.IntegratedRepositoryProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnPentest » IntegratedRepositoryProperty |
A repository connected via a provider integration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityagent as securityagent } from 'aws-cdk-lib';
const integratedRepositoryProperty: securityagent.CfnPentest.IntegratedRepositoryProperty = {
integrationId: 'integrationId',
providerResourceId: 'providerResourceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| integration | string | Unique identifier of the provider integration. |
| provider | string | Identifier of the resource within the provider integration. |
integrationId
Type:
string
Unique identifier of the provider integration.
providerResourceId
Type:
string
Identifier of the resource within the provider integration.

.NET
Go
Java
Python
TypeScript