AWS Classic
getParametersByPath
Using getParametersByPath
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getParametersByPath(args: GetParametersByPathArgs, opts?: InvokeOptions): Promise<GetParametersByPathResult>
function getParametersByPathOutput(args: GetParametersByPathOutputArgs, opts?: InvokeOptions): Output<GetParametersByPathResult>
def get_parameters_by_path(path: Optional[str] = None,
recursive: Optional[bool] = None,
with_decryption: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetParametersByPathResult
def get_parameters_by_path_output(path: Optional[pulumi.Input[str]] = None,
recursive: Optional[pulumi.Input[bool]] = None,
with_decryption: Optional[pulumi.Input[bool]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetParametersByPathResult]
func GetParametersByPath(ctx *Context, args *GetParametersByPathArgs, opts ...InvokeOption) (*GetParametersByPathResult, error)
func GetParametersByPathOutput(ctx *Context, args *GetParametersByPathOutputArgs, opts ...InvokeOption) GetParametersByPathResultOutput
> Note: This function is named GetParametersByPath
in the Go SDK.
public static class GetParametersByPath
{
public static Task<GetParametersByPathResult> InvokeAsync(GetParametersByPathArgs args, InvokeOptions? opts = null)
public static Output<GetParametersByPathResult> Invoke(GetParametersByPathInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetParametersByPathResult> getParametersByPath(GetParametersByPathArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: aws:ssm/getParametersByPath:getParametersByPath
Arguments:
# Arguments dictionary
The following arguments are supported:
- Path string
The prefix path of the parameter.
- Recursive bool
Whether to recursively return parameters under
path
. Defaults tofalse
.- With
Decryption bool Whether to return decrypted
SecureString
value. Defaults totrue
.
- Path string
The prefix path of the parameter.
- Recursive bool
Whether to recursively return parameters under
path
. Defaults tofalse
.- With
Decryption bool Whether to return decrypted
SecureString
value. Defaults totrue
.
- path String
The prefix path of the parameter.
- recursive Boolean
Whether to recursively return parameters under
path
. Defaults tofalse
.- with
Decryption Boolean Whether to return decrypted
SecureString
value. Defaults totrue
.
- path string
The prefix path of the parameter.
- recursive boolean
Whether to recursively return parameters under
path
. Defaults tofalse
.- with
Decryption boolean Whether to return decrypted
SecureString
value. Defaults totrue
.
- path str
The prefix path of the parameter.
- recursive bool
Whether to recursively return parameters under
path
. Defaults tofalse
.- with_
decryption bool Whether to return decrypted
SecureString
value. Defaults totrue
.
- path String
The prefix path of the parameter.
- recursive Boolean
Whether to recursively return parameters under
path
. Defaults tofalse
.- with
Decryption Boolean Whether to return decrypted
SecureString
value. Defaults totrue
.
getParametersByPath Result
The following output properties are available:
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.