Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@aws-cdk/aws-codeguruprofiler
Advanced tools
All classes with the
Cfn
prefix in this module (CFN Resources) are always stable and safe to use.
Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance.
Import to your project:
import * as codeguruprofiler from '@aws-cdk/aws-codeguruprofiler';
Here's how to setup a profiling group and give your compute role permissions to publish to the profiling group to the profiling agent can publish profiling information:
// The execution role of your application that publishes to the ProfilingGroup via CodeGuru Profiler Profiling Agent. (the following is merely an example)
const publishAppRole = new Role(stack, 'PublishAppRole', {
assumedBy: new AccountRootPrincipal(),
});
const profilingGroup = new ProfilingGroup(stack, 'MyProfilingGroup');
profilingGroup.grantPublish(publishAppRole);
Code Guru Profiler supports multiple compute environments.
They can be configured when creating a Profiling Group by using the computePlatform
property:
const profilingGroup = new ProfilingGroup(stack, 'MyProfilingGroup', {
computePlatform: ComputePlatform.AWS_LAMBDA,
});
1.65.0 (2020-09-30)
aws-appmesh: VirtualNode no longer has accessLog set to "/dev/stdout" by default
cognito: refreshToken
property is now removed from
UserPoolClient. It will be included if any other authFlow
is enabled.
synthetics: the default runtime is now syn-nodejs-2.0
eks: cluster.addChart
renamed to cluster.addHelmChart
eks: NodegroupOptions.launchTemplate
renamed to NodegroupOptions.launchTemplateSpec
eks: cluster.addAutoScalingGroup
renamed to cluster.connectAutoScalingGroupCapacity
eks: cluster.addNodegroup
renamed to cluster.addNoedgroupCapacity
eks: cluster.addCapacity
renamed to cluster.addAutoScalingGroupCapacity
eks: CapacityOptions
renamed to AutoScalingGroupCapacityOptions
. Resolves #10364
rds: the default generated password exclude characters set for Instance, Cluster and DatabaseSecret
is now " %+~`#$&*()|[]{}:;<>?!'/@\"\\"
rds: the default generated password exclude characters for addSingleUserRotation()
and addMultiUserRotation()
in Cluster and Instance is now " %+~`#$&*()|[]{}:;<>?!'/@\"\\"
rds: Instance.addSingleUserRotation()
now takes options object as the first argument, instead of just Duration
rds: Cluster.addSingleUserRotation()
now takes options object as the first argument, instead of just Duration
rds: SnapshotCredentials.fromGeneratedPassword()
now takes an option object as the second argument, instead of just IKey
rds: DatabaseInstanceProps
and DatabaseInstanceFromSnapshotProps
-
masterUsername
, masterUserPassword
and masterUserPasswordEncryptionKey
moved
to credentials
as a new Credentials
class.
rds: Login
renamed to Credentials
. Use Credentials.fromUsername
to replace existing usage.
rds: DatabaseClusterProps
masterUser
renamed to credentials
.
JobDefinition
from name using fromJobDefinitionName
(#10448) (7ce91e8), closes #7172encryptionKey
cannot be disabled (#10474) (4aadaa7)FAQs
The CDK Construct Library for AWS::CodeGuruProfiler
The npm package @aws-cdk/aws-codeguruprofiler receives a total of 135,879 weekly downloads. As such, @aws-cdk/aws-codeguruprofiler popularity was classified as popular.
We found that @aws-cdk/aws-codeguruprofiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.