@aws-cdk/aws-auditmanager
Advanced tools
Comparing version
@@ -1,1 +0,1 @@ | ||
{"version":"2","toolVersion":"1.80.0","snippets":{"9c0110438c3a37568bca0b982de90106aadff3648601c0be386a8b7e85aa5d73":{"translations":{"python":{"source":"import aws_cdk.aws_auditmanager as auditmanager","version":"2"},"csharp":{"source":"using Amazon.CDK.AWS.AuditManager;","version":"1"},"java":{"source":"import software.amazon.awscdk.services.auditmanager.*;","version":"1"},"go":{"source":"import auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"","version":"1"},"$":{"source":"import * as auditmanager from '@aws-cdk/aws-auditmanager';","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"@aws-cdk/aws-auditmanager"},"field":{"field":"markdown","line":18}},"didCompile":true,"fqnsReferenced":[],"fullSource":"import * as auditmanager from '@aws-cdk/aws-auditmanager';","syntaxKindCounter":{"10":1,"75":1,"254":1,"255":1,"256":1,"290":1},"fqnsFingerprint":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"0d31729b58b135f1d517684130cf628c26f6112288ddc7344665fbb57eac69e1":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\ncfn_assessment = auditmanager.CfnAssessment(self, \"MyCfnAssessment\",\n assessment_reports_destination=auditmanager.CfnAssessment.AssessmentReportsDestinationProperty(\n destination=\"destination\",\n destination_type=\"destinationType\"\n ),\n aws_account=auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n ),\n delegations=[auditmanager.CfnAssessment.DelegationProperty(\n assessment_id=\"assessmentId\",\n assessment_name=\"assessmentName\",\n comment=\"comment\",\n control_set_id=\"controlSetId\",\n created_by=\"createdBy\",\n creation_time=123,\n id=\"id\",\n last_updated=123,\n role_arn=\"roleArn\",\n role_type=\"roleType\",\n status=\"status\"\n )],\n description=\"description\",\n framework_id=\"frameworkId\",\n name=\"name\",\n roles=[auditmanager.CfnAssessment.RoleProperty(\n role_arn=\"roleArn\",\n role_type=\"roleType\"\n )],\n scope=auditmanager.CfnAssessment.ScopeProperty(\n aws_accounts=[auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n )],\n aws_services=[auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n )]\n ),\n status=\"status\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar cfnAssessment = new CfnAssessment(this, \"MyCfnAssessment\", new CfnAssessmentProps {\n AssessmentReportsDestination = new AssessmentReportsDestinationProperty {\n Destination = \"destination\",\n DestinationType = \"destinationType\"\n },\n AwsAccount = new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n },\n Delegations = new [] { new DelegationProperty {\n AssessmentId = \"assessmentId\",\n AssessmentName = \"assessmentName\",\n Comment = \"comment\",\n ControlSetId = \"controlSetId\",\n CreatedBy = \"createdBy\",\n CreationTime = 123,\n Id = \"id\",\n LastUpdated = 123,\n RoleArn = \"roleArn\",\n RoleType = \"roleType\",\n Status = \"status\"\n } },\n Description = \"description\",\n FrameworkId = \"frameworkId\",\n Name = \"name\",\n Roles = new [] { new RoleProperty {\n RoleArn = \"roleArn\",\n RoleType = \"roleType\"\n } },\n Scope = new ScopeProperty {\n AwsAccounts = new [] { new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n } },\n AwsServices = new [] { new AWSServiceProperty {\n ServiceName = \"serviceName\"\n } }\n },\n Status = \"status\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\n});","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nCfnAssessment cfnAssessment = CfnAssessment.Builder.create(this, \"MyCfnAssessment\")\n .assessmentReportsDestination(AssessmentReportsDestinationProperty.builder()\n .destination(\"destination\")\n .destinationType(\"destinationType\")\n .build())\n .awsAccount(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build())\n .delegations(List.of(DelegationProperty.builder()\n .assessmentId(\"assessmentId\")\n .assessmentName(\"assessmentName\")\n .comment(\"comment\")\n .controlSetId(\"controlSetId\")\n .createdBy(\"createdBy\")\n .creationTime(123)\n .id(\"id\")\n .lastUpdated(123)\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .status(\"status\")\n .build()))\n .description(\"description\")\n .frameworkId(\"frameworkId\")\n .name(\"name\")\n .roles(List.of(RoleProperty.builder()\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .build()))\n .scope(ScopeProperty.builder()\n .awsAccounts(List.of(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build()))\n .awsServices(List.of(AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build()))\n .build())\n .status(\"status\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\ncfnAssessment := auditmanager.NewCfnAssessment(this, jsii.String(\"MyCfnAssessment\"), &CfnAssessmentProps{\n\tAssessmentReportsDestination: &AssessmentReportsDestinationProperty{\n\t\tDestination: jsii.String(\"destination\"),\n\t\tDestinationType: jsii.String(\"destinationType\"),\n\t},\n\tAwsAccount: &AWSAccountProperty{\n\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\tId: jsii.String(\"id\"),\n\t\tName: jsii.String(\"name\"),\n\t},\n\tDelegations: []interface{}{\n\t\t&DelegationProperty{\n\t\t\tAssessmentId: jsii.String(\"assessmentId\"),\n\t\t\tAssessmentName: jsii.String(\"assessmentName\"),\n\t\t\tComment: jsii.String(\"comment\"),\n\t\t\tControlSetId: jsii.String(\"controlSetId\"),\n\t\t\tCreatedBy: jsii.String(\"createdBy\"),\n\t\t\tCreationTime: jsii.Number(123),\n\t\t\tId: jsii.String(\"id\"),\n\t\t\tLastUpdated: jsii.Number(123),\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t\tStatus: jsii.String(\"status\"),\n\t\t},\n\t},\n\tDescription: jsii.String(\"description\"),\n\tFrameworkId: jsii.String(\"frameworkId\"),\n\tName: jsii.String(\"name\"),\n\tRoles: []interface{}{\n\t\t&RoleProperty{\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t},\n\t},\n\tScope: &ScopeProperty{\n\t\tAwsAccounts: []interface{}{\n\t\t\t&AWSAccountProperty{\n\t\t\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\t\t\tId: jsii.String(\"id\"),\n\t\t\t\tName: jsii.String(\"name\"),\n\t\t\t},\n\t\t},\n\t\tAwsServices: []interface{}{\n\t\t\t&AWSServiceProperty{\n\t\t\t\tServiceName: jsii.String(\"serviceName\"),\n\t\t\t},\n\t\t},\n\t},\n\tStatus: jsii.String(\"status\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\n})","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst cfnAssessment = new auditmanager.CfnAssessment(this, 'MyCfnAssessment', /* all optional props */ {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment","@aws-cdk/aws-auditmanager.CfnAssessmentProps","@aws-cdk/core.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnAssessment = new auditmanager.CfnAssessment(this, 'MyCfnAssessment', /* all optional props */ {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":2,"10":28,"75":40,"104":1,"192":5,"193":9,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":36,"290":1},"fqnsFingerprint":"9bbb05626426df00d68a5712c0bc1a132b1c55266b2de9a42cf9a3fce9cd00d4"},"df47b705d60d3dd595400b89e950e865095f71f80af34fb00e40d88dc07b20e9":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\na_wSAccount_property = auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar aWSAccountProperty = new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nAWSAccountProperty aWSAccountProperty = AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\naWSAccountProperty := &AWSAccountProperty{\n\tEmailAddress: jsii.String(\"emailAddress\"),\n\tId: jsii.String(\"id\"),\n\tName: jsii.String(\"name\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst aWSAccountProperty: auditmanager.CfnAssessment.AWSAccountProperty = {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.AWSAccountProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.AWSAccountProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst aWSAccountProperty: auditmanager.CfnAssessment.AWSAccountProperty = {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":4,"75":8,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":3,"290":1},"fqnsFingerprint":"293bcc4a5c95040eebdfd106883d13230b7b5b9586deeaf7e825093e47e17b69"},"208b156bc5e67a9a5702aa58a52328143607b37e64b67f98d62c0b75fcdc7882":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\na_wSService_property = auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar aWSServiceProperty = new AWSServiceProperty {\n ServiceName = \"serviceName\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nAWSServiceProperty aWSServiceProperty = AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\naWSServiceProperty := &AWSServiceProperty{\n\tServiceName: jsii.String(\"serviceName\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst aWSServiceProperty: auditmanager.CfnAssessment.AWSServiceProperty = {\n serviceName: 'serviceName',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.AWSServiceProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.AWSServiceProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst aWSServiceProperty: auditmanager.CfnAssessment.AWSServiceProperty = {\n serviceName: 'serviceName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":2,"75":6,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":1,"290":1},"fqnsFingerprint":"41bf349ea4cfad264c763ea3f57e51f22bd63a801c11696a1a3afac23be33b37"},"de73da9e97f9318295d61286a4d3ca70f4c7d3ffcbd1ea098daa176bbe7cc90a":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\nassessment_reports_destination_property = auditmanager.CfnAssessment.AssessmentReportsDestinationProperty(\n destination=\"destination\",\n destination_type=\"destinationType\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar assessmentReportsDestinationProperty = new AssessmentReportsDestinationProperty {\n Destination = \"destination\",\n DestinationType = \"destinationType\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nAssessmentReportsDestinationProperty assessmentReportsDestinationProperty = AssessmentReportsDestinationProperty.builder()\n .destination(\"destination\")\n .destinationType(\"destinationType\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\nassessmentReportsDestinationProperty := &AssessmentReportsDestinationProperty{\n\tDestination: jsii.String(\"destination\"),\n\tDestinationType: jsii.String(\"destinationType\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst assessmentReportsDestinationProperty: auditmanager.CfnAssessment.AssessmentReportsDestinationProperty = {\n destination: 'destination',\n destinationType: 'destinationType',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.AssessmentReportsDestinationProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.AssessmentReportsDestinationProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst assessmentReportsDestinationProperty: auditmanager.CfnAssessment.AssessmentReportsDestinationProperty = {\n destination: 'destination',\n destinationType: 'destinationType',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"95c50adca30ae6a12c3f0af4a9b924cc2095b6d99a5e82bd5b095a5d10687595"},"aab9c147ca34f79525dd4d6c82d9ed5ef857add22319e930387549ba6acea8f0":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\ndelegation_property = auditmanager.CfnAssessment.DelegationProperty(\n assessment_id=\"assessmentId\",\n assessment_name=\"assessmentName\",\n comment=\"comment\",\n control_set_id=\"controlSetId\",\n created_by=\"createdBy\",\n creation_time=123,\n id=\"id\",\n last_updated=123,\n role_arn=\"roleArn\",\n role_type=\"roleType\",\n status=\"status\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar delegationProperty = new DelegationProperty {\n AssessmentId = \"assessmentId\",\n AssessmentName = \"assessmentName\",\n Comment = \"comment\",\n ControlSetId = \"controlSetId\",\n CreatedBy = \"createdBy\",\n CreationTime = 123,\n Id = \"id\",\n LastUpdated = 123,\n RoleArn = \"roleArn\",\n RoleType = \"roleType\",\n Status = \"status\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nDelegationProperty delegationProperty = DelegationProperty.builder()\n .assessmentId(\"assessmentId\")\n .assessmentName(\"assessmentName\")\n .comment(\"comment\")\n .controlSetId(\"controlSetId\")\n .createdBy(\"createdBy\")\n .creationTime(123)\n .id(\"id\")\n .lastUpdated(123)\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .status(\"status\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\ndelegationProperty := &DelegationProperty{\n\tAssessmentId: jsii.String(\"assessmentId\"),\n\tAssessmentName: jsii.String(\"assessmentName\"),\n\tComment: jsii.String(\"comment\"),\n\tControlSetId: jsii.String(\"controlSetId\"),\n\tCreatedBy: jsii.String(\"createdBy\"),\n\tCreationTime: jsii.Number(123),\n\tId: jsii.String(\"id\"),\n\tLastUpdated: jsii.Number(123),\n\tRoleArn: jsii.String(\"roleArn\"),\n\tRoleType: jsii.String(\"roleType\"),\n\tStatus: jsii.String(\"status\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst delegationProperty: auditmanager.CfnAssessment.DelegationProperty = {\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.DelegationProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.DelegationProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst delegationProperty: auditmanager.CfnAssessment.DelegationProperty = {\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":2,"10":10,"75":16,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":11,"290":1},"fqnsFingerprint":"64a3bb5aca4bfd4f0fc52ba4c70dc8656315dc63ccab06c0f1601ccb2bc2f812"},"fc396497bda60eccadb69e54965cad9bfdfac2196f3baa917f696eb7551f6c77":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\nrole_property = auditmanager.CfnAssessment.RoleProperty(\n role_arn=\"roleArn\",\n role_type=\"roleType\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar roleProperty = new RoleProperty {\n RoleArn = \"roleArn\",\n RoleType = \"roleType\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nRoleProperty roleProperty = RoleProperty.builder()\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\nroleProperty := &RoleProperty{\n\tRoleArn: jsii.String(\"roleArn\"),\n\tRoleType: jsii.String(\"roleType\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst roleProperty: auditmanager.CfnAssessment.RoleProperty = {\n roleArn: 'roleArn',\n roleType: 'roleType',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.RoleProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.RoleProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst roleProperty: auditmanager.CfnAssessment.RoleProperty = {\n roleArn: 'roleArn',\n roleType: 'roleType',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"5acf3ff150dbb1674c955312ccf634d7bb1f3d29c46489140b17657d3f8691c9"},"d72ad4365aa65adca476c188b982d50179b2e9e90d1923190756fcbdd509f39b":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\nscope_property = auditmanager.CfnAssessment.ScopeProperty(\n aws_accounts=[auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n )],\n aws_services=[auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n )]\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar scopeProperty = new ScopeProperty {\n AwsAccounts = new [] { new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n } },\n AwsServices = new [] { new AWSServiceProperty {\n ServiceName = \"serviceName\"\n } }\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nScopeProperty scopeProperty = ScopeProperty.builder()\n .awsAccounts(List.of(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build()))\n .awsServices(List.of(AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build()))\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\nscopeProperty := &ScopeProperty{\n\tAwsAccounts: []interface{}{\n\t\t&AWSAccountProperty{\n\t\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\t\tId: jsii.String(\"id\"),\n\t\t\tName: jsii.String(\"name\"),\n\t\t},\n\t},\n\tAwsServices: []interface{}{\n\t\t&AWSServiceProperty{\n\t\t\tServiceName: jsii.String(\"serviceName\"),\n\t\t},\n\t},\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst scopeProperty: auditmanager.CfnAssessment.ScopeProperty = {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.ScopeProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.ScopeProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst scopeProperty: auditmanager.CfnAssessment.ScopeProperty = {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":5,"75":11,"153":2,"169":1,"192":2,"193":3,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":6,"290":1},"fqnsFingerprint":"2dc562ba8226f35879a5f8a9d43932156a80db12c92e6f92b5e80f3ae732542d"},"85020be50d09929562af6838916df62af281a1eeb62a820db56c7e66ecd18f37":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\ncfn_assessment_props = auditmanager.CfnAssessmentProps(\n assessment_reports_destination=auditmanager.CfnAssessment.AssessmentReportsDestinationProperty(\n destination=\"destination\",\n destination_type=\"destinationType\"\n ),\n aws_account=auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n ),\n delegations=[auditmanager.CfnAssessment.DelegationProperty(\n assessment_id=\"assessmentId\",\n assessment_name=\"assessmentName\",\n comment=\"comment\",\n control_set_id=\"controlSetId\",\n created_by=\"createdBy\",\n creation_time=123,\n id=\"id\",\n last_updated=123,\n role_arn=\"roleArn\",\n role_type=\"roleType\",\n status=\"status\"\n )],\n description=\"description\",\n framework_id=\"frameworkId\",\n name=\"name\",\n roles=[auditmanager.CfnAssessment.RoleProperty(\n role_arn=\"roleArn\",\n role_type=\"roleType\"\n )],\n scope=auditmanager.CfnAssessment.ScopeProperty(\n aws_accounts=[auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n )],\n aws_services=[auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n )]\n ),\n status=\"status\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar cfnAssessmentProps = new CfnAssessmentProps {\n AssessmentReportsDestination = new AssessmentReportsDestinationProperty {\n Destination = \"destination\",\n DestinationType = \"destinationType\"\n },\n AwsAccount = new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n },\n Delegations = new [] { new DelegationProperty {\n AssessmentId = \"assessmentId\",\n AssessmentName = \"assessmentName\",\n Comment = \"comment\",\n ControlSetId = \"controlSetId\",\n CreatedBy = \"createdBy\",\n CreationTime = 123,\n Id = \"id\",\n LastUpdated = 123,\n RoleArn = \"roleArn\",\n RoleType = \"roleType\",\n Status = \"status\"\n } },\n Description = \"description\",\n FrameworkId = \"frameworkId\",\n Name = \"name\",\n Roles = new [] { new RoleProperty {\n RoleArn = \"roleArn\",\n RoleType = \"roleType\"\n } },\n Scope = new ScopeProperty {\n AwsAccounts = new [] { new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n } },\n AwsServices = new [] { new AWSServiceProperty {\n ServiceName = \"serviceName\"\n } }\n },\n Status = \"status\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nCfnAssessmentProps cfnAssessmentProps = CfnAssessmentProps.builder()\n .assessmentReportsDestination(AssessmentReportsDestinationProperty.builder()\n .destination(\"destination\")\n .destinationType(\"destinationType\")\n .build())\n .awsAccount(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build())\n .delegations(List.of(DelegationProperty.builder()\n .assessmentId(\"assessmentId\")\n .assessmentName(\"assessmentName\")\n .comment(\"comment\")\n .controlSetId(\"controlSetId\")\n .createdBy(\"createdBy\")\n .creationTime(123)\n .id(\"id\")\n .lastUpdated(123)\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .status(\"status\")\n .build()))\n .description(\"description\")\n .frameworkId(\"frameworkId\")\n .name(\"name\")\n .roles(List.of(RoleProperty.builder()\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .build()))\n .scope(ScopeProperty.builder()\n .awsAccounts(List.of(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build()))\n .awsServices(List.of(AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build()))\n .build())\n .status(\"status\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\ncfnAssessmentProps := &CfnAssessmentProps{\n\tAssessmentReportsDestination: &AssessmentReportsDestinationProperty{\n\t\tDestination: jsii.String(\"destination\"),\n\t\tDestinationType: jsii.String(\"destinationType\"),\n\t},\n\tAwsAccount: &AWSAccountProperty{\n\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\tId: jsii.String(\"id\"),\n\t\tName: jsii.String(\"name\"),\n\t},\n\tDelegations: []interface{}{\n\t\t&DelegationProperty{\n\t\t\tAssessmentId: jsii.String(\"assessmentId\"),\n\t\t\tAssessmentName: jsii.String(\"assessmentName\"),\n\t\t\tComment: jsii.String(\"comment\"),\n\t\t\tControlSetId: jsii.String(\"controlSetId\"),\n\t\t\tCreatedBy: jsii.String(\"createdBy\"),\n\t\t\tCreationTime: jsii.Number(123),\n\t\t\tId: jsii.String(\"id\"),\n\t\t\tLastUpdated: jsii.Number(123),\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t\tStatus: jsii.String(\"status\"),\n\t\t},\n\t},\n\tDescription: jsii.String(\"description\"),\n\tFrameworkId: jsii.String(\"frameworkId\"),\n\tName: jsii.String(\"name\"),\n\tRoles: []interface{}{\n\t\t&RoleProperty{\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t},\n\t},\n\tScope: &ScopeProperty{\n\t\tAwsAccounts: []interface{}{\n\t\t\t&AWSAccountProperty{\n\t\t\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\t\t\tId: jsii.String(\"id\"),\n\t\t\t\tName: jsii.String(\"name\"),\n\t\t\t},\n\t\t},\n\t\tAwsServices: []interface{}{\n\t\t\t&AWSServiceProperty{\n\t\t\t\tServiceName: jsii.String(\"serviceName\"),\n\t\t\t},\n\t\t},\n\t},\n\tStatus: jsii.String(\"status\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst cfnAssessmentProps: auditmanager.CfnAssessmentProps = {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessmentProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessmentProps"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnAssessmentProps: auditmanager.CfnAssessmentProps = {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":2,"10":27,"75":40,"153":1,"169":1,"192":5,"193":9,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":36,"290":1},"fqnsFingerprint":"195202aac51e1ea5a693d70a57555782f886a26b94fe37c9890b7993aee5f265"}}} | ||
{"version":"2","toolVersion":"1.84.0","snippets":{"9c0110438c3a37568bca0b982de90106aadff3648601c0be386a8b7e85aa5d73":{"translations":{"python":{"source":"import aws_cdk.aws_auditmanager as auditmanager","version":"2"},"csharp":{"source":"using Amazon.CDK.AWS.AuditManager;","version":"1"},"java":{"source":"import software.amazon.awscdk.services.auditmanager.*;","version":"1"},"go":{"source":"import auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"","version":"1"},"$":{"source":"import * as auditmanager from '@aws-cdk/aws-auditmanager';","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"@aws-cdk/aws-auditmanager"},"field":{"field":"markdown","line":21}},"didCompile":true,"fqnsReferenced":[],"fullSource":"import * as auditmanager from '@aws-cdk/aws-auditmanager';","syntaxKindCounter":{"10":1,"75":1,"254":1,"255":1,"256":1,"290":1},"fqnsFingerprint":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"0d31729b58b135f1d517684130cf628c26f6112288ddc7344665fbb57eac69e1":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\ncfn_assessment = auditmanager.CfnAssessment(self, \"MyCfnAssessment\",\n assessment_reports_destination=auditmanager.CfnAssessment.AssessmentReportsDestinationProperty(\n destination=\"destination\",\n destination_type=\"destinationType\"\n ),\n aws_account=auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n ),\n delegations=[auditmanager.CfnAssessment.DelegationProperty(\n assessment_id=\"assessmentId\",\n assessment_name=\"assessmentName\",\n comment=\"comment\",\n control_set_id=\"controlSetId\",\n created_by=\"createdBy\",\n creation_time=123,\n id=\"id\",\n last_updated=123,\n role_arn=\"roleArn\",\n role_type=\"roleType\",\n status=\"status\"\n )],\n description=\"description\",\n framework_id=\"frameworkId\",\n name=\"name\",\n roles=[auditmanager.CfnAssessment.RoleProperty(\n role_arn=\"roleArn\",\n role_type=\"roleType\"\n )],\n scope=auditmanager.CfnAssessment.ScopeProperty(\n aws_accounts=[auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n )],\n aws_services=[auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n )]\n ),\n status=\"status\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar cfnAssessment = new CfnAssessment(this, \"MyCfnAssessment\", new CfnAssessmentProps {\n AssessmentReportsDestination = new AssessmentReportsDestinationProperty {\n Destination = \"destination\",\n DestinationType = \"destinationType\"\n },\n AwsAccount = new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n },\n Delegations = new [] { new DelegationProperty {\n AssessmentId = \"assessmentId\",\n AssessmentName = \"assessmentName\",\n Comment = \"comment\",\n ControlSetId = \"controlSetId\",\n CreatedBy = \"createdBy\",\n CreationTime = 123,\n Id = \"id\",\n LastUpdated = 123,\n RoleArn = \"roleArn\",\n RoleType = \"roleType\",\n Status = \"status\"\n } },\n Description = \"description\",\n FrameworkId = \"frameworkId\",\n Name = \"name\",\n Roles = new [] { new RoleProperty {\n RoleArn = \"roleArn\",\n RoleType = \"roleType\"\n } },\n Scope = new ScopeProperty {\n AwsAccounts = new [] { new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n } },\n AwsServices = new [] { new AWSServiceProperty {\n ServiceName = \"serviceName\"\n } }\n },\n Status = \"status\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\n});","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nCfnAssessment cfnAssessment = CfnAssessment.Builder.create(this, \"MyCfnAssessment\")\n .assessmentReportsDestination(AssessmentReportsDestinationProperty.builder()\n .destination(\"destination\")\n .destinationType(\"destinationType\")\n .build())\n .awsAccount(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build())\n .delegations(List.of(DelegationProperty.builder()\n .assessmentId(\"assessmentId\")\n .assessmentName(\"assessmentName\")\n .comment(\"comment\")\n .controlSetId(\"controlSetId\")\n .createdBy(\"createdBy\")\n .creationTime(123)\n .id(\"id\")\n .lastUpdated(123)\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .status(\"status\")\n .build()))\n .description(\"description\")\n .frameworkId(\"frameworkId\")\n .name(\"name\")\n .roles(List.of(RoleProperty.builder()\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .build()))\n .scope(ScopeProperty.builder()\n .awsAccounts(List.of(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build()))\n .awsServices(List.of(AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build()))\n .build())\n .status(\"status\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\ncfnAssessment := auditmanager.NewCfnAssessment(this, jsii.String(\"MyCfnAssessment\"), &CfnAssessmentProps{\n\tAssessmentReportsDestination: &AssessmentReportsDestinationProperty{\n\t\tDestination: jsii.String(\"destination\"),\n\t\tDestinationType: jsii.String(\"destinationType\"),\n\t},\n\tAwsAccount: &AWSAccountProperty{\n\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\tId: jsii.String(\"id\"),\n\t\tName: jsii.String(\"name\"),\n\t},\n\tDelegations: []interface{}{\n\t\t&DelegationProperty{\n\t\t\tAssessmentId: jsii.String(\"assessmentId\"),\n\t\t\tAssessmentName: jsii.String(\"assessmentName\"),\n\t\t\tComment: jsii.String(\"comment\"),\n\t\t\tControlSetId: jsii.String(\"controlSetId\"),\n\t\t\tCreatedBy: jsii.String(\"createdBy\"),\n\t\t\tCreationTime: jsii.Number(123),\n\t\t\tId: jsii.String(\"id\"),\n\t\t\tLastUpdated: jsii.Number(123),\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t\tStatus: jsii.String(\"status\"),\n\t\t},\n\t},\n\tDescription: jsii.String(\"description\"),\n\tFrameworkId: jsii.String(\"frameworkId\"),\n\tName: jsii.String(\"name\"),\n\tRoles: []interface{}{\n\t\t&RoleProperty{\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t},\n\t},\n\tScope: &ScopeProperty{\n\t\tAwsAccounts: []interface{}{\n\t\t\t&AWSAccountProperty{\n\t\t\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\t\t\tId: jsii.String(\"id\"),\n\t\t\t\tName: jsii.String(\"name\"),\n\t\t\t},\n\t\t},\n\t\tAwsServices: []interface{}{\n\t\t\t&AWSServiceProperty{\n\t\t\t\tServiceName: jsii.String(\"serviceName\"),\n\t\t\t},\n\t\t},\n\t},\n\tStatus: jsii.String(\"status\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\n})","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst cfnAssessment = new auditmanager.CfnAssessment(this, 'MyCfnAssessment', /* all optional props */ {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment","@aws-cdk/aws-auditmanager.CfnAssessmentProps","@aws-cdk/core.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnAssessment = new auditmanager.CfnAssessment(this, 'MyCfnAssessment', /* all optional props */ {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":2,"10":28,"75":40,"104":1,"192":5,"193":9,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":36,"290":1},"fqnsFingerprint":"9bbb05626426df00d68a5712c0bc1a132b1c55266b2de9a42cf9a3fce9cd00d4"},"df47b705d60d3dd595400b89e950e865095f71f80af34fb00e40d88dc07b20e9":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\na_wSAccount_property = auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar aWSAccountProperty = new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nAWSAccountProperty aWSAccountProperty = AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\naWSAccountProperty := &AWSAccountProperty{\n\tEmailAddress: jsii.String(\"emailAddress\"),\n\tId: jsii.String(\"id\"),\n\tName: jsii.String(\"name\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst aWSAccountProperty: auditmanager.CfnAssessment.AWSAccountProperty = {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.AWSAccountProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.AWSAccountProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst aWSAccountProperty: auditmanager.CfnAssessment.AWSAccountProperty = {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":4,"75":8,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":3,"290":1},"fqnsFingerprint":"293bcc4a5c95040eebdfd106883d13230b7b5b9586deeaf7e825093e47e17b69"},"208b156bc5e67a9a5702aa58a52328143607b37e64b67f98d62c0b75fcdc7882":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\na_wSService_property = auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar aWSServiceProperty = new AWSServiceProperty {\n ServiceName = \"serviceName\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nAWSServiceProperty aWSServiceProperty = AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\naWSServiceProperty := &AWSServiceProperty{\n\tServiceName: jsii.String(\"serviceName\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst aWSServiceProperty: auditmanager.CfnAssessment.AWSServiceProperty = {\n serviceName: 'serviceName',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.AWSServiceProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.AWSServiceProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst aWSServiceProperty: auditmanager.CfnAssessment.AWSServiceProperty = {\n serviceName: 'serviceName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":2,"75":6,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":1,"290":1},"fqnsFingerprint":"41bf349ea4cfad264c763ea3f57e51f22bd63a801c11696a1a3afac23be33b37"},"de73da9e97f9318295d61286a4d3ca70f4c7d3ffcbd1ea098daa176bbe7cc90a":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\nassessment_reports_destination_property = auditmanager.CfnAssessment.AssessmentReportsDestinationProperty(\n destination=\"destination\",\n destination_type=\"destinationType\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar assessmentReportsDestinationProperty = new AssessmentReportsDestinationProperty {\n Destination = \"destination\",\n DestinationType = \"destinationType\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nAssessmentReportsDestinationProperty assessmentReportsDestinationProperty = AssessmentReportsDestinationProperty.builder()\n .destination(\"destination\")\n .destinationType(\"destinationType\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\nassessmentReportsDestinationProperty := &AssessmentReportsDestinationProperty{\n\tDestination: jsii.String(\"destination\"),\n\tDestinationType: jsii.String(\"destinationType\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst assessmentReportsDestinationProperty: auditmanager.CfnAssessment.AssessmentReportsDestinationProperty = {\n destination: 'destination',\n destinationType: 'destinationType',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.AssessmentReportsDestinationProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.AssessmentReportsDestinationProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst assessmentReportsDestinationProperty: auditmanager.CfnAssessment.AssessmentReportsDestinationProperty = {\n destination: 'destination',\n destinationType: 'destinationType',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"95c50adca30ae6a12c3f0af4a9b924cc2095b6d99a5e82bd5b095a5d10687595"},"aab9c147ca34f79525dd4d6c82d9ed5ef857add22319e930387549ba6acea8f0":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\ndelegation_property = auditmanager.CfnAssessment.DelegationProperty(\n assessment_id=\"assessmentId\",\n assessment_name=\"assessmentName\",\n comment=\"comment\",\n control_set_id=\"controlSetId\",\n created_by=\"createdBy\",\n creation_time=123,\n id=\"id\",\n last_updated=123,\n role_arn=\"roleArn\",\n role_type=\"roleType\",\n status=\"status\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar delegationProperty = new DelegationProperty {\n AssessmentId = \"assessmentId\",\n AssessmentName = \"assessmentName\",\n Comment = \"comment\",\n ControlSetId = \"controlSetId\",\n CreatedBy = \"createdBy\",\n CreationTime = 123,\n Id = \"id\",\n LastUpdated = 123,\n RoleArn = \"roleArn\",\n RoleType = \"roleType\",\n Status = \"status\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nDelegationProperty delegationProperty = DelegationProperty.builder()\n .assessmentId(\"assessmentId\")\n .assessmentName(\"assessmentName\")\n .comment(\"comment\")\n .controlSetId(\"controlSetId\")\n .createdBy(\"createdBy\")\n .creationTime(123)\n .id(\"id\")\n .lastUpdated(123)\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .status(\"status\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\ndelegationProperty := &DelegationProperty{\n\tAssessmentId: jsii.String(\"assessmentId\"),\n\tAssessmentName: jsii.String(\"assessmentName\"),\n\tComment: jsii.String(\"comment\"),\n\tControlSetId: jsii.String(\"controlSetId\"),\n\tCreatedBy: jsii.String(\"createdBy\"),\n\tCreationTime: jsii.Number(123),\n\tId: jsii.String(\"id\"),\n\tLastUpdated: jsii.Number(123),\n\tRoleArn: jsii.String(\"roleArn\"),\n\tRoleType: jsii.String(\"roleType\"),\n\tStatus: jsii.String(\"status\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst delegationProperty: auditmanager.CfnAssessment.DelegationProperty = {\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.DelegationProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.DelegationProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst delegationProperty: auditmanager.CfnAssessment.DelegationProperty = {\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":2,"10":10,"75":16,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":11,"290":1},"fqnsFingerprint":"64a3bb5aca4bfd4f0fc52ba4c70dc8656315dc63ccab06c0f1601ccb2bc2f812"},"fc396497bda60eccadb69e54965cad9bfdfac2196f3baa917f696eb7551f6c77":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\nrole_property = auditmanager.CfnAssessment.RoleProperty(\n role_arn=\"roleArn\",\n role_type=\"roleType\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar roleProperty = new RoleProperty {\n RoleArn = \"roleArn\",\n RoleType = \"roleType\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nRoleProperty roleProperty = RoleProperty.builder()\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\nroleProperty := &RoleProperty{\n\tRoleArn: jsii.String(\"roleArn\"),\n\tRoleType: jsii.String(\"roleType\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst roleProperty: auditmanager.CfnAssessment.RoleProperty = {\n roleArn: 'roleArn',\n roleType: 'roleType',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.RoleProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.RoleProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst roleProperty: auditmanager.CfnAssessment.RoleProperty = {\n roleArn: 'roleArn',\n roleType: 'roleType',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"5acf3ff150dbb1674c955312ccf634d7bb1f3d29c46489140b17657d3f8691c9"},"d72ad4365aa65adca476c188b982d50179b2e9e90d1923190756fcbdd509f39b":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\nscope_property = auditmanager.CfnAssessment.ScopeProperty(\n aws_accounts=[auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n )],\n aws_services=[auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n )]\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar scopeProperty = new ScopeProperty {\n AwsAccounts = new [] { new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n } },\n AwsServices = new [] { new AWSServiceProperty {\n ServiceName = \"serviceName\"\n } }\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nScopeProperty scopeProperty = ScopeProperty.builder()\n .awsAccounts(List.of(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build()))\n .awsServices(List.of(AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build()))\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\nscopeProperty := &ScopeProperty{\n\tAwsAccounts: []interface{}{\n\t\t&AWSAccountProperty{\n\t\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\t\tId: jsii.String(\"id\"),\n\t\t\tName: jsii.String(\"name\"),\n\t\t},\n\t},\n\tAwsServices: []interface{}{\n\t\t&AWSServiceProperty{\n\t\t\tServiceName: jsii.String(\"serviceName\"),\n\t\t},\n\t},\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst scopeProperty: auditmanager.CfnAssessment.ScopeProperty = {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessment.ScopeProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessment.ScopeProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst scopeProperty: auditmanager.CfnAssessment.ScopeProperty = {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":5,"75":11,"153":2,"169":1,"192":2,"193":3,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":6,"290":1},"fqnsFingerprint":"2dc562ba8226f35879a5f8a9d43932156a80db12c92e6f92b5e80f3ae732542d"},"85020be50d09929562af6838916df62af281a1eeb62a820db56c7e66ecd18f37":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_auditmanager as auditmanager\n\ncfn_assessment_props = auditmanager.CfnAssessmentProps(\n assessment_reports_destination=auditmanager.CfnAssessment.AssessmentReportsDestinationProperty(\n destination=\"destination\",\n destination_type=\"destinationType\"\n ),\n aws_account=auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n ),\n delegations=[auditmanager.CfnAssessment.DelegationProperty(\n assessment_id=\"assessmentId\",\n assessment_name=\"assessmentName\",\n comment=\"comment\",\n control_set_id=\"controlSetId\",\n created_by=\"createdBy\",\n creation_time=123,\n id=\"id\",\n last_updated=123,\n role_arn=\"roleArn\",\n role_type=\"roleType\",\n status=\"status\"\n )],\n description=\"description\",\n framework_id=\"frameworkId\",\n name=\"name\",\n roles=[auditmanager.CfnAssessment.RoleProperty(\n role_arn=\"roleArn\",\n role_type=\"roleType\"\n )],\n scope=auditmanager.CfnAssessment.ScopeProperty(\n aws_accounts=[auditmanager.CfnAssessment.AWSAccountProperty(\n email_address=\"emailAddress\",\n id=\"id\",\n name=\"name\"\n )],\n aws_services=[auditmanager.CfnAssessment.AWSServiceProperty(\n service_name=\"serviceName\"\n )]\n ),\n status=\"status\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.AuditManager;\n\nvar cfnAssessmentProps = new CfnAssessmentProps {\n AssessmentReportsDestination = new AssessmentReportsDestinationProperty {\n Destination = \"destination\",\n DestinationType = \"destinationType\"\n },\n AwsAccount = new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n },\n Delegations = new [] { new DelegationProperty {\n AssessmentId = \"assessmentId\",\n AssessmentName = \"assessmentName\",\n Comment = \"comment\",\n ControlSetId = \"controlSetId\",\n CreatedBy = \"createdBy\",\n CreationTime = 123,\n Id = \"id\",\n LastUpdated = 123,\n RoleArn = \"roleArn\",\n RoleType = \"roleType\",\n Status = \"status\"\n } },\n Description = \"description\",\n FrameworkId = \"frameworkId\",\n Name = \"name\",\n Roles = new [] { new RoleProperty {\n RoleArn = \"roleArn\",\n RoleType = \"roleType\"\n } },\n Scope = new ScopeProperty {\n AwsAccounts = new [] { new AWSAccountProperty {\n EmailAddress = \"emailAddress\",\n Id = \"id\",\n Name = \"name\"\n } },\n AwsServices = new [] { new AWSServiceProperty {\n ServiceName = \"serviceName\"\n } }\n },\n Status = \"status\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.auditmanager.*;\n\nCfnAssessmentProps cfnAssessmentProps = CfnAssessmentProps.builder()\n .assessmentReportsDestination(AssessmentReportsDestinationProperty.builder()\n .destination(\"destination\")\n .destinationType(\"destinationType\")\n .build())\n .awsAccount(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build())\n .delegations(List.of(DelegationProperty.builder()\n .assessmentId(\"assessmentId\")\n .assessmentName(\"assessmentName\")\n .comment(\"comment\")\n .controlSetId(\"controlSetId\")\n .createdBy(\"createdBy\")\n .creationTime(123)\n .id(\"id\")\n .lastUpdated(123)\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .status(\"status\")\n .build()))\n .description(\"description\")\n .frameworkId(\"frameworkId\")\n .name(\"name\")\n .roles(List.of(RoleProperty.builder()\n .roleArn(\"roleArn\")\n .roleType(\"roleType\")\n .build()))\n .scope(ScopeProperty.builder()\n .awsAccounts(List.of(AWSAccountProperty.builder()\n .emailAddress(\"emailAddress\")\n .id(\"id\")\n .name(\"name\")\n .build()))\n .awsServices(List.of(AWSServiceProperty.builder()\n .serviceName(\"serviceName\")\n .build()))\n .build())\n .status(\"status\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport auditmanager \"github.com/aws-samples/dummy/awscdkawsauditmanager\"\n\ncfnAssessmentProps := &CfnAssessmentProps{\n\tAssessmentReportsDestination: &AssessmentReportsDestinationProperty{\n\t\tDestination: jsii.String(\"destination\"),\n\t\tDestinationType: jsii.String(\"destinationType\"),\n\t},\n\tAwsAccount: &AWSAccountProperty{\n\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\tId: jsii.String(\"id\"),\n\t\tName: jsii.String(\"name\"),\n\t},\n\tDelegations: []interface{}{\n\t\t&DelegationProperty{\n\t\t\tAssessmentId: jsii.String(\"assessmentId\"),\n\t\t\tAssessmentName: jsii.String(\"assessmentName\"),\n\t\t\tComment: jsii.String(\"comment\"),\n\t\t\tControlSetId: jsii.String(\"controlSetId\"),\n\t\t\tCreatedBy: jsii.String(\"createdBy\"),\n\t\t\tCreationTime: jsii.Number(123),\n\t\t\tId: jsii.String(\"id\"),\n\t\t\tLastUpdated: jsii.Number(123),\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t\tStatus: jsii.String(\"status\"),\n\t\t},\n\t},\n\tDescription: jsii.String(\"description\"),\n\tFrameworkId: jsii.String(\"frameworkId\"),\n\tName: jsii.String(\"name\"),\n\tRoles: []interface{}{\n\t\t&RoleProperty{\n\t\t\tRoleArn: jsii.String(\"roleArn\"),\n\t\t\tRoleType: jsii.String(\"roleType\"),\n\t\t},\n\t},\n\tScope: &ScopeProperty{\n\t\tAwsAccounts: []interface{}{\n\t\t\t&AWSAccountProperty{\n\t\t\t\tEmailAddress: jsii.String(\"emailAddress\"),\n\t\t\t\tId: jsii.String(\"id\"),\n\t\t\t\tName: jsii.String(\"name\"),\n\t\t\t},\n\t\t},\n\t\tAwsServices: []interface{}{\n\t\t\t&AWSServiceProperty{\n\t\t\t\tServiceName: jsii.String(\"serviceName\"),\n\t\t\t},\n\t\t},\n\t},\n\tStatus: jsii.String(\"status\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\nconst cfnAssessmentProps: auditmanager.CfnAssessmentProps = {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-auditmanager.CfnAssessmentProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-auditmanager.CfnAssessmentProps"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as auditmanager from '@aws-cdk/aws-auditmanager';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnAssessmentProps: auditmanager.CfnAssessmentProps = {\n assessmentReportsDestination: {\n destination: 'destination',\n destinationType: 'destinationType',\n },\n awsAccount: {\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n },\n delegations: [{\n assessmentId: 'assessmentId',\n assessmentName: 'assessmentName',\n comment: 'comment',\n controlSetId: 'controlSetId',\n createdBy: 'createdBy',\n creationTime: 123,\n id: 'id',\n lastUpdated: 123,\n roleArn: 'roleArn',\n roleType: 'roleType',\n status: 'status',\n }],\n description: 'description',\n frameworkId: 'frameworkId',\n name: 'name',\n roles: [{\n roleArn: 'roleArn',\n roleType: 'roleType',\n }],\n scope: {\n awsAccounts: [{\n emailAddress: 'emailAddress',\n id: 'id',\n name: 'name',\n }],\n awsServices: [{\n serviceName: 'serviceName',\n }],\n },\n status: 'status',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":2,"10":27,"75":40,"153":1,"169":1,"192":5,"193":9,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":36,"290":1},"fqnsFingerprint":"195202aac51e1ea5a693d70a57555782f886a26b94fe37c9890b7993aee5f265"}}} |
@@ -262,3 +262,3 @@ import * as cdk from '@aws-cdk/core'; | ||
/** | ||
* The destination of the assessment report. | ||
* The destination bucket where Audit Manager stores assessment reports. | ||
* | ||
@@ -265,0 +265,0 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-auditmanager-assessment-assessmentreportsdestination.html#cfn-auditmanager-assessment-assessmentreportsdestination-destination |
{ | ||
"name": "@aws-cdk/aws-auditmanager", | ||
"version": "1.203.0", | ||
"version": "1.204.0", | ||
"description": "The CDK Construct Library for AWS::AuditManager", | ||
@@ -84,13 +84,13 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@aws-cdk/assertions": "1.203.0", | ||
"@aws-cdk/cdk-build-tools": "1.203.0", | ||
"@aws-cdk/cfn2ts": "1.203.0", | ||
"@aws-cdk/pkglint": "1.203.0", | ||
"@aws-cdk/assertions": "1.204.0", | ||
"@aws-cdk/cdk-build-tools": "1.204.0", | ||
"@aws-cdk/cfn2ts": "1.204.0", | ||
"@aws-cdk/pkglint": "1.204.0", | ||
"@types/jest": "^27.5.2" | ||
}, | ||
"dependencies": { | ||
"@aws-cdk/core": "1.203.0" | ||
"@aws-cdk/core": "1.204.0" | ||
}, | ||
"peerDependencies": { | ||
"@aws-cdk/core": "1.203.0" | ||
"@aws-cdk/core": "1.204.0" | ||
}, | ||
@@ -101,3 +101,3 @@ "engines": { | ||
"stability": "experimental", | ||
"maturity": "cfn-only", | ||
"maturity": "end-of-support", | ||
"awscdkio": { | ||
@@ -108,3 +108,4 @@ "announce": false | ||
"tag": "latest" | ||
} | ||
}, | ||
"deprecated": "AWS CDK v1 has reached End-of-Support on 2023-06-01.\nThis package is no longer being updated, and users should migrate to AWS CDK v2.\n\nFor more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html" | ||
} |
@@ -6,7 +6,10 @@ # AWS::AuditManager Construct Library | ||
 | ||
 | ||
> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use. | ||
> AWS CDK v1 has reached End-of-Support on 2023-06-01. | ||
> This package is no longer being updated, and users should migrate to AWS CDK v2. | ||
> | ||
> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib | ||
> For more information on how to migrate, see the [_Migrating to AWS CDK v2_ guide][doc]. | ||
> | ||
> [doc]: https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html | ||
@@ -13,0 +16,0 @@ --- |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
263934
0.3%43
7.5%1
Infinity%+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
Updated