Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(ssm): fix grammatical errors for StringParameter #27004

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions packages/aws-cdk-lib/aws-ssm/lib/parameter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ export interface ParameterOptions {
readonly parameterName?: string;

/**
* Indicates of the parameter name is a simple name (i.e. does not include "/"
* Indicates if the parameter name is a simple name (i.e. does not include "/"
* separators).
*
* This is only required only if `parameterName` is a token, which means we
* This is required only if `parameterName` is a token, which means we
* are unable to detect if the name is simple or "path-like" for the purpose
* of rendering SSM parameter ARNs.
*
Expand Down Expand Up @@ -168,7 +168,7 @@ abstract class ParameterBase extends Resource implements IParameter {
/**
* The encryption key that is used to encrypt this parameter.
*
* * @default - default master key
* @default - default master key
*/
public readonly encryptionKey?: kms.IKey;

Expand Down Expand Up @@ -337,10 +337,10 @@ export interface CommonStringParameterAttributes {
readonly parameterName: string;

/**
* Indicates of the parameter name is a simple name (i.e. does not include "/"
* Indicates if the parameter name is a simple name (i.e. does not include "/"
* separators).
*
* This is only required only if `parameterName` is a token, which means we
* This is required only if `parameterName` is a token, which means we
* are unable to detect if the name is simple or "path-like" for the purpose
* of rendering SSM parameter ARNs.
*
Expand Down