interface CustomHeaderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnPentestPropsMixin.CustomHeaderProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnPentestPropsMixin_CustomHeaderProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnPentestPropsMixin.CustomHeaderProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnPentestPropsMixin.CustomHeaderProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnPentestPropsMixin » CustomHeaderProperty |
A custom header to include in outbound requests.
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/cfn-property-mixins';
const customHeaderProperty: securityagent.CfnPentestPropsMixin.CustomHeaderProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Name of the header. |
| value? | string | Value of the header. |
name?
Type:
string
(optional)
Name of the header.
value?
Type:
string
(optional)
Value of the header.

.NET
Go
Java
Python
TypeScript